    .auth-container {
        min-height: 80vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 40px 20px;
    }
    
    .auth-card {
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 24px;
        padding: 48px 40px;
        max-width: 440px;
        width: 100%;
        transition: all 0.4s ease;
        box-shadow: 0 20px 60px var(--shadow-color);
    }
    
    .auth-card:hover {
        border-color: var(--border-hover);
        box-shadow: 0 30px 80px var(--shadow-color);
    }
    
    .auth-logo {
        text-align: center;
        margin-bottom: 32px;
    }
    
    .auth-logo svg {
        width: 56px;
        height: 56px;
        margin-bottom: 12px;
    }
    
    .auth-logo h2 {
        font-size: 24px;
        font-weight: 700;
    }
    
    .auth-logo p {
        color: var(--text-secondary);
        font-size: 14px;
        margin-top: 4px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        display: block;
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 6px;
        color: var(--text-primary);
    }
    
    .form-group .input-wrapper {
        position: relative;
    }
    
    .form-group .input-wrapper svg {
        position: absolute;
        right: 14px;
        top: 50%;
        transform: translateY(-50%);
        width: 18px;
        height: 18px;
        color: var(--text-muted);
        pointer-events: none;
    }
    
    .form-control {
        width: 100%;
        padding: 12px 44px 12px 16px;
        background: var(--input-bg);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        color: var(--text-primary);
        font-size: 14px;
        transition: all 0.3s ease;
        font-family: 'Vazirmatn', sans-serif;
    }
    
    .form-control:focus {
        border-color: #00d4ff;
        outline: none;
        box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
    }
    
    .form-control::placeholder {
        color: var(--text-muted);
        font-size: 13px;
    }
    
    .form-control.error {
        border-color: #ff6b6b;
        box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
    }
    
    .error-text {
        color: #ff6b6b;
        font-size: 12px;
        margin-top: 4px;
        display: block;
    }
    
    .form-options {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 24px;
    }
    
    .form-options .remember-me {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        color: var(--text-secondary);
        cursor: pointer;
    }
    
    .form-options .remember-me input[type="checkbox"] {
        width: 16px;
        height: 16px;
        accent-color: #00d4ff;
        cursor: pointer;
    }
    
    .form-options .forgot-link {
        font-size: 13px;
        color: #00d4ff;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .form-options .forgot-link:hover {
        color: #0099cc;
        text-decoration: underline;
    }
    
    .btn-login {
        width: 100%;
        padding: 14px;
        border-radius: 12px;
        font-size: 15px;
        font-weight: 600;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    
    .divider {
        display: flex;
        align-items: center;
        gap: 16px;
        margin: 24px 0;
    }
    
    .divider::before,
    .divider::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--border-color);
    }
    
    .divider span {
        color: var(--text-muted);
        font-size: 13px;
        white-space: nowrap;
    }
    
    .social-login {
        display: flex;
        gap: 12px;
    }
    
    .social-btn {
        flex: 1;
        padding: 12px;
        border-radius: 12px;
        border: 1px solid var(--border-color);
        background: var(--bg-secondary);
        color: var(--text-secondary);
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
    }
    
    .social-btn:hover {
        border-color: var(--border-hover);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px var(--shadow-color);
    }
    
    .social-btn.google:hover {
        border-color: #ea4335;
        color: #ea4335;
    }
    
    .social-btn.github:hover {
        border-color: #6e5494;
        color: #6e5494;
    }
    
    .social-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .auth-footer {
        text-align: center;
        margin-top: 24px;
        padding-top: 20px;
        border-top: 1px solid var(--border-color);
    }
    
    .auth-footer p {
        color: var(--text-secondary);
        font-size: 14px;
    }
    
    .auth-footer a {
        color: #00d4ff;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
    }
    
    .auth-footer a:hover {
        color: #0099cc;
        text-decoration: underline;
    }
    
    .messages-container {
        margin-bottom: 20px;
    }
    
    .message {
        padding: 12px 16px;
        border-radius: 12px;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .message.error {
        background: rgba(255, 107, 107, 0.1);
        border: 1px solid rgba(255, 107, 107, 0.2);
        color: #ff6b6b;
    }
    
    .message.success {
        background: rgba(52, 211, 153, 0.1);
        border: 1px solid rgba(52, 211, 153, 0.2);
        color: #34d399;
    }
    
    .message.warning {
        background: rgba(255, 210, 0, 0.1);
        border: 1px solid rgba(255, 210, 0, 0.2);
        color: #ffd200;
    }
    
    .message.info {
        background: rgba(0, 212, 255, 0.1);
        border: 1px solid rgba(0, 212, 255, 0.2);
        color: #00d4ff;
    }
    
    .message svg {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }
    
    [data-theme="light"] .auth-card {
        background: #ffffff;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    }
    
    [data-theme="light"] .auth-card:hover {
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
    }
    
    [data-theme="light"] .social-btn {
        background: #f8fafc;
        border-color: #e2e8f0;
    }
    
    [data-theme="light"] .social-btn:hover {
        border-color: #cbd5e1;
    }
    
    [data-theme="light"] .form-control {
        background: #f8fafc;
        border-color: #e2e8f0;
    }
    
    [data-theme="light"] .form-control:focus {
        border-color: #00d4ff;
        box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.08);
    }
    
    @media (max-width: 480px) {
        .auth-card {
            padding: 32px 20px;
        }
        
        .social-login {
            flex-direction: column;
        }
        
        .form-options {
            flex-direction: column;
            gap: 12px;
            align-items: flex-start;
        }
    }