.login-page {
            --primary-color: #1A3A6E;
            --secondary-color: #B2872B;
            --accent-color: #8E6B22;
            --light-bg: #F8F9FA;
            --card-bg: rgba(255, 255, 255, 0.95);
            --gradient-primary: linear-gradient(135deg, #041E43 0%, #1A3A6E 100%);
            --gradient-secondary: linear-gradient(135deg, #B2872B 0%, #d4a62b 100%);
            --gradient-gold: linear-gradient(135deg, #B2872B 0%, #E6B325 50%, #F4C542 100%);
            --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
            --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.15);
            --border-radius-lg: 20px;
            --border-radius-xl: 30px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #F8F9FA;
            color: #333;
            overflow-x: hidden;
            min-height: 100%;
            position: relative;
        }

        #vue-app {
            position: relative;
            min-height: 100%;
            overflow: hidden;
        }

        /* Background with gradient and particles */
        #particles-js {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            z-index: 0;
            pointer-events: none;
        }

        .background-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 80%, rgba(178, 135, 43, 0.15) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(26, 58, 110, 0.1) 0%, transparent 50%);
            z-index: 1;
            pointer-events: none;
        }

        /* Main container */
        .main-container {
            min-height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 40px 20px;
            position: relative;
            z-index: 2;
        }

        /* Logo and branding */
        .brand-section {
            text-align: center;
            margin-bottom: 40px;
            max-width: 800px;
        }

        .brand-logo {
            font-size: 2.5rem;
            font-weight: 700;
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 15px;
            display: inline-block;
        }

        .brand-tagline {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.85);
            font-weight: 300;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Gateway cards */
        .gateway-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            max-width: 1200px;
            width: 100%;
            margin-bottom: 50px;
        }

        .gateway-card {
            background: var(--card-bg);
            border-radius: var(--border-radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
            border: none;
        }

        .gateway-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-xl);
        }

        .gateway-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-secondary);
        }

        .gateway-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 30px auto 20px;
            background: linear-gradient(135deg, rgba(178, 135, 43, 0.1) 0%, rgba(26, 58, 110, 0.05) 100%);
            border: 2px solid rgba(178, 135, 43, 0.2);
        }

        .gateway-icon i {
            font-size: 2.2rem;
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .gateway-card.primary .gateway-icon {
            background: linear-gradient(135deg, rgba(178, 135, 43, 0.15) 0%, rgba(26, 58, 110, 0.1) 100%);
            border: 2px solid rgba(178, 135, 43, 0.3);
        }

        .gateway-content {
            padding: 0 30px 30px;
            text-align: center;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .gateway-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 15px;
            font-family: 'Poppins', sans-serif;
        }

        .gateway-description {
            color: #666;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 25px;
            flex-grow: 1;
        }

        .gateway-btn {
            background: var(--gradient-secondary);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 14px 30px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            text-decoration: none;
            box-shadow: 0 8px 20px rgba(178, 135, 43, 0.25);
        }

        .gateway-btn:hover {
            background: linear-gradient(135deg, #9c7524 0%, #c09526 100%);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(178, 135, 43, 0.35);
        }

        .gateway-btn i {
            font-size: 1.1rem;
        }

        .gateway-card.secondary .gateway-btn {
            background: linear-gradient(135deg, #5a6c8c 0%, #7a8fb9 100%);
            box-shadow: 0 8px 20px rgba(90, 108, 140, 0.25);
        }

        .gateway-card.secondary .gateway-btn:hover {
            background: linear-gradient(135deg, #4a5a78 0%, #6a7fa9 100%);
            box-shadow: 0 12px 25px rgba(90, 108, 140, 0.35);
        }

        /* Features section */
        .features-section {
            max-width: 1200px;
            width: 100%;
            margin-top: 40px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .feature-icon {
            font-size: 2rem;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }

        .feature-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .feature-description {
            font-size: 0.9rem;
            opacity: 0.85;
            line-height: 1.5;
        }

        /* Footer */
        .footer {
            margin-top: 50px;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        .login-page .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }

        .login-page .footer-link {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s;
        }

        .login-page .footer-link:hover {
            color: var(--secondary-color);
        }

        /* Modal enhancements */
        .modal-content {
            border-radius: var(--border-radius-lg);
            overflow: hidden;
            border: none;
            box-shadow: var(--shadow-xl);
        }

        .modal-header {
            background: var(--gradient-primary);
            color: white;
            border-bottom: none;
            padding: 30px 30px 20px;
        }

        .modal-title {
            font-weight: 700;
            font-size: 1.5rem;
        }

        .modal-body {
            padding: 30px;
        }

        .form-label {
            font-weight: 600;
            color: #555;
            margin-bottom: 8px;
        }

        .form-control {
            padding: 14px 18px;
            border-radius: 12px;
            border: 1px solid #ddd;
            font-size: 1rem;
            transition: all 0.3s;
        }

        .form-control:focus {
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 0.25rem rgba(178, 135, 43, 0.25);
        }

        .input-group-text {
            background-color: #f8f9fa;
            border: 1px solid #ddd;
            border-right: none;
        }

        .password-toggle {
            cursor: pointer;
            color: #777;
            transition: color 0.3s;
        }

        .password-toggle:hover {
            color: var(--secondary-color);
        }

        /* Login options */
        .login-options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
        }

        .remember-me {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .forgot-password {
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .forgot-password:hover {
            color: var(--accent-color);
            text-decoration: underline;
        }

        /* Divider */
        .divider {
            display: flex;
            align-items: center;
            text-align: center;
            margin: 25px 0;
            color: #777;
        }

        .divider::before,
        .divider::after {
            content: '';
            flex: 1;
            border-bottom: 1px solid #ddd;
        }

        .divider span {
            padding: 0 15px;
            font-size: 0.9rem;
        }

        /* Social login */
        .social-login {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 25px;
        }

        .social-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 12px;
            border-radius: 12px;
            border: 1px solid #ddd;
            background: white;
            font-weight: 500;
            transition: all 0.3s;
        }

        .social-btn:hover {
            background: #f8f9fa;
            transform: translateY(-2px);
        }

        .social-btn.google i {
            color: #DB4437;
        }

        .social-btn.microsoft i {
            color: #00A4EF;
        }

        /* Security info */
        .security-info {
            background-color: #f8f9fa;
            border-radius: 12px;
            padding: 20px;
            margin-top: 25px;
            border-left: 4px solid var(--secondary-color);
        }

        .security-title {
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .security-points {
            list-style-type: none;
            padding-left: 0;
            margin-bottom: 0;
        }

        .security-points li {
            margin-bottom: 8px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .security-points li i {
            color: var(--secondary-color);
            margin-top: 3px;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .gateway-container {
                grid-template-columns: 1fr;
                max-width: 500px;
            }
            
            .features-section {
                grid-template-columns: 1fr;
            }
            
            .social-login {
                grid-template-columns: 1fr;
            }
            
            .brand-logo {
                font-size: 2rem;
            }
            
            .brand-tagline {
                font-size: 1rem;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fade-in-up {
            animation: fadeInUp 0.6s ease-out forwards;
        }

        .delay-1 {
            animation-delay: 0.2s;
        }

        .delay-2 {
            animation-delay: 0.4s;
        }

        /* Custom checkbox */
        .form-check-input:checked {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
        }

        /* Progress bar for password strength */
        .password-strength {
            height: 6px;
            border-radius: 3px;
            margin-top: 5px;
            background-color: #e9ecef;
            overflow: hidden;
        }

        .password-strength-bar {
            height: 100%;
            width: 0%;
            transition: width 0.3s, background-color 0.3s;
            border-radius: 3px;
        }

        /* Language selector */
        .language-selector {
            position: absolute;
            top: 30px;
            right: 30px;
            z-index: 3;
        }

        .lang-btn {
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
            border-radius: 20px;
            padding: 8px 20px;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
        }

        .lang-btn:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        /* Layout wrapper */
        .layout-wrapper {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
