    .auth-page {
        min-height: 100vh;
        display: grid;
        grid-template-columns: 1fr 1fr;
        background: var(--bg-secondary);
    }
    
    .auth-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 3rem 2rem;
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }
    
    .auth-logo {
        margin-bottom: 2rem;
    }
    
    .logo-icon-large {
        width: 56px;
        height: 56px;
        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        border-radius: var(--radius);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 800;
        font-size: 1.75rem;
        box-shadow: var(--shadow-lg);
    }
    
    .auth-header {
        text-align: center;
        margin-bottom: 2.5rem;
        width: 100%;
    }
    
    .auth-header h1 {
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 0.5rem;
        color: var(--text);
    }
    
    .auth-form {
        width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .input-prefix-icon {
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-light);
        pointer-events: none;
    }
    
    .input-suffix-icon {
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-light);
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.25rem;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }
    
    .input-suffix-icon:hover {
        color: var(--primary);
    }
    
    .form-input.with-prefix {
        padding-left: 3rem;
    }
    
    .form-input.with-suffix {
        padding-right: 3rem;
    }
    
    .alert {
        padding: 1rem;
        border-radius: var(--radius-sm);
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-size: 0.9375rem;
        font-weight: 500;
    }
    
    .alert-error {
        background: #FEF2F2;
        border: 1px solid #FCA5A5;
        color: #DC2626;
    }
    
    [data-theme="dark"] .alert-error {
        background: rgba(220, 38, 38, 0.1);
        border-color: rgba(220, 38, 38, 0.3);
        color: #FCA5A5;
    }
    
    .auth-divider {
        position: relative;
        text-align: center;
        margin: 1.5rem 0;
        width: 100%;
    }
    
    .auth-divider::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 50%;
        height: 1px;
        background: var(--border);
    }
    
    .auth-divider span {
        background: var(--bg-secondary);
        padding: 0 1rem;
        position: relative;
        color: var(--text-light);
        font-size: 0.875rem;
    }
    
    .auth-footer {
        text-align: center;
        color: var(--text-light);
        font-size: 0.9375rem;
        width: 100%;
    }
    
    .auth-footer a {
        color: var(--primary);
        text-decoration: none;
        font-weight: 600;
        transition: var(--transition);
    }
    
    .auth-footer a:hover {
        color: var(--primary-dark);
    }
    
    /* Right Side */
    .auth-side {
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        padding: 3rem;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }
    
    .auth-side::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
        border-radius: 50%;
    }
    
    .auth-testimonial {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: 2.5rem;
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
        max-width: 500px;
        position: relative;
        z-index: 1;
    }
    
    .testimonial-icon {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
    
    .auth-testimonial blockquote {
        color: white;
        font-size: 1.125rem;
        line-height: 1.7;
        margin-bottom: 2rem;
        font-weight: 400;
    }
    
    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .author-avatar {
        width: 48px;
        height: 48px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 700;
        font-size: 1.125rem;
    }
    
    .author-name {
        color: white;
        font-weight: 700;
        font-size: 1rem;
    }
    
    .author-title {
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.875rem;
    }
    
    @media (max-width: 1024px) {
        .auth-page {
            grid-template-columns: 1fr;
        }
        
        .auth-side {
            display: none;
        }
    }
    
    @media (max-width: 480px) {
        .auth-container {
            padding: 2rem 1.5rem;
        }
        
        .auth-header h1 {
            font-size: 1.75rem;
        }
    }


/* Add to static/css/login.css at the bottom */

.form-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.forgot-link {
    color: var(--primary);
    font-size: 0.875rem;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.forgot-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.alert-success {
    background: #F0FDF4;
    border: 1px solid #86EFAC;
    color: #16A34A;
}

[data-theme="dark"] .alert-success {
    background: rgba(22, 163, 74, 0.1);
    border-color: rgba(22, 163, 74, 0.3);
    color: #86EFAC;
}