/* Body background styling */
body {
    background-image: url('../images/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    font-family: Arial, sans-serif;
}

/* Auth container */
.auth-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 60px;
}

/* Logo */
.logo img {
    height: 60px;
}

/* Header auth buttons */
.auth-buttons {
    margin-top: 10px;
}

.auth-buttons a button {
    margin-left: 10px;
    padding: 10px 20px;
    border: none;
    background-color: #7ba8ad;
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
     font-weight: bold;
    font-size: 18px;
}

/* Form card */


.register-form-container .login {
    margin-top: 15px;
}

.register-form-container {
    background: rgba(255, 255, 255, 0.85);
    padding: 30px 30px;
    max-width: 500px;
    margin: 30px auto 0 auto;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.register-form-container h2 {
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.register-form-container p {
    text-align: center;
    font-size: 14px;
}

.register-form-container p a {
    color: #000;
    text-decoration: underline;
}

/* Form fields */
.form-group {
    display: flex;
    gap: 10px;
}

.form-group input,
.register-form-container input[type="email"],
.register-form-container input[type="password"] {
    padding: 12px;
    width: 100%;
    border: 1px solid #000;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 15px;
}

/* Terms checkbox */
.checkbox {
    display: flex;
    align-items: center;
    font-size: 13px;
    margin: 10px 0;
}

.checkbox input {
    margin-right: 8px;
}

/* Submit button */
.btn-submit {
    width: 100%;
    padding: 12px;
    background-color: #000;
    color: white;
    border: none;
    border-radius: 4px;
    margin-top: 10px;
    font-weight: bold;
    cursor: pointer;
}

/* Social login buttons */
.social-login {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    gap: 10px;
}

.social-login a {
    text-decoration: none;
    width: 100%;
}

.social-login div {
    border: 1px solid #000;
    border-radius: 6px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    background-color: #fff;
    color: #000;
    cursor: pointer;
}

.social-login img {
    height: 20px;
    margin-right: 8px;
}


.auth-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 60px;
}

.logo img {
    height: 60px;
}

.auth-buttons {
    margin-top: 10px;
}



.auth-buttons a button {
    margin-left: 10px;
    padding: 10px 20px;
    border: none;
    background-color: #7ba8ad;
    color: black;
    border-radius: 10px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 576px) {
    .form-group {
        flex-direction: column;
    }

    .auth-container {
        flex-direction: column;
        align-items: center;
    }

    .auth-buttons {
        margin-top: 20px;
    }
}
