:root {
    --primary: #4f46e5;
    --primary-dark: #4338ca;
    --text-main: #111827;
    --text-muted: #6b7280;
    --bg-light: #f9fafb;
}

.auth-container {
    display: flex;
    min-height: 100vh;
}

/* Left Visual Side */

/* Left Visual Side */
.auth-visual-staff {
    flex: 1;
    /* background: linear-gradient(135deg, #4f46e5 0%, #1e1b4b 100%); */
    /* background: url('../images/duaa2.png') no-repeat center center;
    background-size: cover; */

    background: linear-gradient(rgba(0, 0, 0, 0.2),
            /* Dark transparent color */
            rgba(0, 0, 0, 0.2)
            /* Dark transparent color */
        ),
        url('../images/classroom.jpg') no-repeat center center;
    /* Your image */
    background-size: cover;


    color: white;
    display: flex;
    align-items: center;
    padding: 60px;
}

/*  */
.auth-visual {
    flex: 1;
    /* background: linear-gradient(135deg, #4f46e5 0%, #1e1b4b 100%); */
    /* background: url('../images/duaa2.png') no-repeat center center;
    background-size: cover; */

    background: linear-gradient(rgba(0, 0, 0, 0.2),
            /* Dark transparent color */
            rgba(0, 0, 0, 0.5)
            /* Dark transparent color */
        ),
        url('../images/notebook.jpg') no-repeat center center;
    /* Your image */
    background-size: cover;


    color: white;
    display: flex;
    align-items: center;
    padding: 60px;
}

.visual-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.visual-content p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
}

.testimonial {
    margin-top: 60px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    font-style: italic;
}

/* Right Form Side */
.auth-form-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 40px;
}

.form-box {
    width: 100%;
    max-width: 400px;
}

.form-header h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.form-header a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.forgot-link {
    font-size: 13px;
    color: var(--primary);
    text-decoration: none;
}

.btn-primary-auth {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
}

/* Social Buttons */
.divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #e5e7eb;
    z-index: 1;
}

.divider span {
    background: white;
    padding: 0 15px;
    position: relative;
    z-index: 2;
    color: var(--text-muted);
    font-size: 14px;
}

.social-login {
    display: flex;
    gap: 15px;
}

.btn-social {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid #e5e7eb;
    background: white;
    border-radius: 8px;
    cursor: pointer;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .auth-visual {
        display: none;
    }

    .auth-visual-staff {
        display: none;
    }

    /* Hide the visual side on mobile */
    .auth-form-section {
        background: var(--bg-light);
    }
}