    /* Auth Page Specific Styles */
        .mobeel-auth-page {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        .mobeel-auth-container {
            flex: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: calc(100vh - 80px);
        }
        
        @media (max-width: 992px) {
            .mobeel-auth-container {
                grid-template-columns: 1fr;
            }
        }
        
        /* Left Panel - Branding */
        .mobeel-auth-brand {
            background: var(--mobeel-gradient-hero);
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 60px 40px;
            overflow: hidden;
        }
        
        .mobeel-auth-brand::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at 30% 50%, var(--mobeel-accent-glow) 0%, transparent 55%);
            pointer-events: none;
        }
        
        @media (max-width: 992px) {
            .mobeel-auth-brand {
                display: none;
            }
        }
        
        .mobeel-auth-brand-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 480px;
        }
        
        .mobeel-auth-brand-logo {
            margin-bottom: 40px;
        }
        
        .mobeel-auth-brand-logo img {
            height: 48px;
        }
        
        .mobeel-auth-brand-title {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 16px;
            line-height: 1.2;
        }
        
        .mobeel-auth-brand-title .highlight {
            background: var(--mobeel-gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .mobeel-auth-brand-desc {
            font-size: 1.125rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            margin-bottom: 40px;
        }
        
        .mobeel-auth-brand-image {
            max-width: 100%;
            border-radius: 20px;
            box-shadow: var(--mobeel-shadow-xl);
        }
        
        .mobeel-auth-features {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-top: 40px;
        }
        
        .mobeel-auth-feature {
            display: flex;
            align-items: center;
            gap: 12px;
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9375rem;
        }
        
        .mobeel-auth-feature i {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--mobeel-accent);
            border-radius: 50%;
            font-size: 12px;
            color: #0a0a0a;
        }
        
        /* Right Panel - Form */
        .mobeel-auth-form-panel {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 40px;
            background: var(--mobeel-bg-primary);
            position: relative;
        }
        
        .mobeel-auth-form-header {
            position: absolute;
            top: 20px;
            right: 24px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .mobeel-auth-form-container {
            width: 100%;
            max-width: 420px;
        }
        
        .mobeel-auth-form-title {
            font-size: clamp(1.75rem, 3vw, 2.25rem);
            font-weight: 700;
            color: var(--mobeel-text-primary);
            margin-bottom: 8px;
        }
        
        .mobeel-auth-form-subtitle {
            font-size: 1rem;
            color: var(--mobeel-text-secondary);
            margin-bottom: 32px;
        }
        
        /* Form Styles */
        .mobeel-form-group {
            margin-bottom: 24px;
        }
        
        .mobeel-form-label {
            display: block;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--mobeel-text-primary);
            margin-bottom: 8px;
        }
        
        .mobeel-form-label .required {
            color: #ef4444;
            margin-left: 4px;
        }
        
        .mobeel-form-input {
            width: 100%;
            padding: 14px 16px;
            font-size: 1rem;
            color: var(--mobeel-text-primary);
            background: var(--mobeel-bg-secondary);
            border: 1px solid var(--mobeel-border);
            border-radius: 12px;
            transition: all 0.3s ease;
            outline: none;
        }
        
        .mobeel-form-input:focus {
            border-color: var(--mobeel-accent);
            box-shadow: 0 0 0 3px var(--mobeel-accent-glow);
        }
        
        .mobeel-form-input::placeholder {
            color: var(--mobeel-text-muted);
        }
        
        .mobeel-input-group {
            position: relative;
            display: flex;
        }
        
        .mobeel-input-group .mobeel-form-input {
            padding-right: 48px;
        }
        
        .mobeel-input-toggle {
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--mobeel-text-muted);
            cursor: pointer;
            padding: 0;
            transition: color 0.3s ease;
        }
        
        .mobeel-input-toggle:hover {
            color: var(--mobeel-text-primary);
        }
        
        .mobeel-form-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
        }
        
        .mobeel-checkbox-label {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.875rem;
            color: var(--mobeel-text-secondary);
            cursor: pointer;
        }
        
        .mobeel-checkbox-label input[type="checkbox"] {
            width: 18px;
            height: 18px;
            accent-color: var(--mobeel-accent);
            cursor: pointer;
        }
        
        .mobeel-form-link {
            font-size: 0.875rem;
            color: var(--mobeel-accent);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .mobeel-form-link:hover {
            color: var(--mobeel-accent-hover);
            text-decoration: underline;
        }
        
        .mobeel-form-error {
            font-size: 0.8125rem;
            color: #ef4444;
            margin-top: 6px;
        }
        
        .mobeel-alert {
            padding: 14px 16px;
            border-radius: 12px;
            margin-bottom: 24px;
            font-size: 0.9375rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .mobeel-alert-error {
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.2);
            color: #ef4444;
        }
        
        .mobeel-alert-success {
            background: rgba(34, 197, 94, 0.1);
            border: 1px solid rgba(34, 197, 94, 0.2);
            color: #22c55e;
        }
        
        .mobeel-alert-close {
            margin-left: auto;
            background: none;
            border: none;
            color: inherit;
            cursor: pointer;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }
        
        .mobeel-alert-close:hover {
            opacity: 1;
        }
        
        .mobeel-form-footer {
            text-align: center;
            margin-top: 32px;
            padding-top: 24px;
            border-top: 1px solid var(--mobeel-border);
        }
        
        .mobeel-form-footer-text {
            font-size: 0.9375rem;
            color: var(--mobeel-text-secondary);
        }
        
        .mobeel-form-footer-text a {
            color: var(--mobeel-accent);
            text-decoration: none;
            font-weight: 600;
            margin-left: 4px;
        }
        
        .mobeel-form-footer-text a:hover {
            text-decoration: underline;
        }
        
        /* Mobile header for auth page */
        .mobeel-auth-mobile-header {
            display: none;
            padding: 16px 20px;
            background: var(--mobeel-bg-primary);
            border-bottom: 1px solid var(--mobeel-border);
        }
        
        @media (max-width: 992px) {
            .mobeel-auth-mobile-header {
                display: flex;
                justify-content: space-between;
                align-items: center;
            }
            
            .mobeel-auth-form-header {
                display: none;
            }
            
            .mobeel-auth-form-panel {
                padding: 32px 20px;
            }
        }
        
        /* Loading state */
        .mobeel-btn-loading {
            position: relative;
            pointer-events: none;
        }
        
        .mobeel-btn-loading::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            top: 50%;
            left: 50%;
            margin-left: -10px;
            margin-top: -10px;
            border: 2px solid transparent;
            border-top-color: currentColor;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* Back to home link */
        .mobeel-back-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--mobeel-text-secondary);
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: 24px;
            transition: color 0.3s ease;
        }
        
        .mobeel-back-link:hover {
            color: var(--mobeel-accent);
        }
        
        /* Utility classes */
        .d-none {
            display: none !important;
        }