body, body section {
    background-color: #f7f9fd;
}

.auth-container {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: inset 0 0 50px rgb(0 0 0 / 0.05);
    overflow: hidden;
}

/* Left side image with content */
.auth-image {
    background-image: url("/assets/img/backgroud_adaut.JPG");
    background-size: cover;
    background-position: center;
    min-height: 100%;
}

/* Right side form container */
.auth-form-container {
    padding: 48px 48px 48px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Heading */
.auth-form-container h2 {
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 32px;
    color: #222;
}

/* Form inputs */
.form-control {
    border-radius: 8px;
    border: 1.5px solid #8a8fb9;
    padding: 14px 16px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}
.form-control:focus {
    border-color: #5c63f3;
    box-shadow: 0 0 0 0.2rem rgb(92, 99, 243 / 0.3);
}

/* Remember me and forgot password section */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    margin-bottom: 24px;
    font-size: 0.875rem;
    color: #555770;
}
.form-options label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}

/* Submit button */
.btn-auth {
    background-color: #6e73f6;
    color: white;
    border-radius: 12px;
    padding: 14px 0;
    font-weight: 700;
    letter-spacing: 0.1em;
    transition: background-color 0.3s;
    border: none;
    width: 100%;
    text-transform: uppercase;
    cursor: pointer;
}
.btn-auth:hover,
.btn-auth:focus {
    background-color: #585edb;
    outline: none;
}

/* Divider with text */
.divider {
    font-size: 0.875rem;
    color: #a0a3bd;
    margin: 32px 0 20px;
    text-align: center;
    position: relative;
}
.divider::before,
.divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1.5px;
    background-color: #e1e1e8;
    transform: translateY(-50%);
}
.divider::before {
    left: 0;
}
.divider::after {
    right: 0;
}

/* Social buttons container */
.social-auth {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 8px;
}

/* Social button styling */
.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    box-shadow: 0 2px 6px rgb(0 0 0 / 0.1);
    transition: box-shadow 0.25s ease;
    border: none;
}
.btn-social:focus {
    outline: 2px solid #8585ff;
    outline-offset: 2px;
    box-shadow: none;
}
.btn-google {
    background-color: #db4437;
}
.btn-google:hover {
    background-color: #bd3e2f;
}
.btn-twitter {
    background-color: #1da1f2;
}
.btn-twitter:hover {
    background-color: #198fd9;
}
.material-icons {
    font-size: 20px;
    vertical-align: middle;
}

.wrapper {
    border-radius: 12px;
}
/* Responsive adjustments */
@media (max-width: 767px) {
    .wrapper {
        border-radius: 0px;
    }
    .auth-container {
        grid-template-columns: 1fr;
        max-width: 100%;
        min-height: 100vh;
        border-radius: 0;
    }
    .auth-image {
        display: none;
    }
    .auth-form-container {
        padding: 32px 24px;
    }
}
