    .auth-wrapper {
        min-height: calc(100vh - 450px);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1.5rem 1rem;
        background: radial-gradient(circle at top right, rgba(28, 65, 140, 0.05) 0%, transparent 60%),
                    radial-gradient(circle at bottom left, rgba(242, 203, 5, 0.05) 0%, transparent 60%);
    }
    .auth-card {
        background: #ffffff;
        border-radius: 28px;
        box-shadow: 0 24px 50px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.04);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        max-width: 1050px;
        width: 100%;
    }
    @media (min-width: 992px) {
        .auth-card {
            flex-direction: row;
        }
        .auth-form-side {
            width: 50%;
            padding: 2.5rem 3rem;
        }
        .auth-image-side {
            width: 50%;
            background: linear-gradient(145deg, var(--primary-blue, #1C418C) 0%, #0d224d 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            padding: 3rem;
            color: white;
            position: relative;
            overflow: hidden;
        }
    }
    .auth-image-side::before {
        content: '';
        position: absolute;
        top: -30%;
        left: -30%;
        width: 160%;
        height: 160%;
        background: radial-gradient(circle, rgba(242, 203, 5, 0.15) 0%, transparent 50%);
        pointer-events: none;
    }
    .auth-image-side::after {
        content: '';
        position: absolute;
        bottom: -20%;
        right: -20%;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
        pointer-events: none;
    }
    .auth-form-side {
        padding: 2.5rem 1.5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .auth-logo {
        height: 54px;
        margin-bottom: 1.5rem;
        transition: transform 0.3s ease;
    }
    .auth-logo:hover {
        transform: scale(1.02);
    }
    .auth-title {
        font-weight: 800;
        color: #1e293b;
        font-size: 2.25rem;
        margin-bottom: 0.5rem;
        letter-spacing: -0.03em;
    }
    .auth-subtitle {
        color: #64748b;
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    .form-control {
        border-radius: 14px;
        padding: 0.8rem 1.25rem;
        border: 2px solid #f1f5f9;
        background-color: #f8fafc;
        font-size: 1rem;
        color: #334155;
        transition: all 0.25s ease;
    }
    .form-control:focus {
        border-color: var(--primary-blue, #1C418C);
        background-color: #ffffff;
        box-shadow: 0 0 0 4px rgba(28, 65, 140, 0.1);
        outline: none;
    }
    .btn-auth-primary {
        background: var(--primary-blue, #1C418C);
        color: white;
        border: none;
        border-radius: 14px;
        padding: 0.9rem 1.5rem;
        font-weight: 700;
        font-size: 1.1rem;
        width: 100%;
        transition: all 0.3s ease;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
    }
    .btn-auth-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(28, 65, 140, 0.3);
        color: white;
    }
    .social-separator {
        display: flex;
        align-items: center;
        text-align: center;
        margin: 1.25rem 0;
        color: #94a3b8;
        font-size: 0.85rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1.5px;
    }
    .social-separator::before,
    .social-separator::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid #e2e8f0;
    }
    .social-separator:not(:empty)::before {
        margin-right: 1em;
    }
    .social-separator:not(:empty)::after {
        margin-left: 1em;
    }
    .form-group label {
        font-weight: 600;
        color: #475569;
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
    }
    .form-group {
        margin-bottom: 1.5rem;
    }
    .feature-list {
        list-style: none;
        padding: 0;
        margin-top: 2rem;
        position: relative;
        z-index: 1;
    }
    .feature-list li {
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        font-size: 1.15rem;
        color: rgba(255,255,255,0.95);
        font-weight: 500;
    }
    .feature-icon {
        width: 40px;
        height: 40px;
        background: rgba(255,255,255,0.15);
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1.25rem;
        flex-shrink: 0;
        color: #F2CB05;
        backdrop-filter: blur(5px);
    }
    .auth-hero-title {
        font-size: 2.75rem;
        line-height: 1.2;
        font-weight: 800;
        margin-bottom: 1.25rem;
        position: relative;
        z-index: 1;
    }
    .auth-hero-text {
        font-size: 1.15rem;
        margin-bottom: 3rem;
        opacity: 0.85;
        line-height: 1.6;
        position: relative;
        z-index: 1;
    }
    .auth-footer-links {
        margin-top: 1.5rem;
        padding-top: 1rem;
        border-top: 1px solid #f1f5f9;
        text-align: center;
    }
    .btn-social {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        padding: 0.8rem;
        border-radius: 14px;
        border: 2px solid #f1f5f9;
        background: #ffffff;
        color: #334155;
        font-weight: 600;
        transition: all 0.2s ease;
        text-decoration: none;
        width: 100%;
        margin-bottom: 1rem;
    }
    .btn-social:hover {
        background: #f8fafc;
        border-color: #e2e8f0;
        color: #0f172a;
    }
