
        /* Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        }
        
        /* Login Split Container */
        .login-split-container {
            display: flex;
            min-height: 100vh;
        }
        
        /* Left Side - Branding */
        .login-left-side {
            flex: 1;
    background: linear-gradient(180deg, #0a1628 0%, #06101f 50%, #0a1628 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 3rem;
            position: relative;
            overflow: hidden;
        }
        
        .login-left-side::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(rgba(0, 254, 102, 0.07) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 254, 102, 0.07) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
        }
        
        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }
        
        .login-left-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }
        
        .login-left-title {
            font-size: 2rem;
            font-weight: 800;
            color: #FFFFFF;
            letter-spacing: 2px;
        }
        
        /* Right Side - Form */
        .login-right-side {
            flex: 1;
            background: #F8F9FA;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 3rem;
        }
        
        .login-form-container {
            width: 100%;
            max-width: 480px;
        }
        
        .login-form-header {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .login-form-title {
            color: #2C3E50;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .login-form-subtitle {
            color: #95A5A6;
            font-size: 1rem;
            margin-bottom: 2rem;
        }
        
        .login-social-divider {
            text-align: center;
            color: #95A5A6;
            font-size: 0.9rem;
            margin: 2rem 0 1.5rem 0;
        }
        
        .login-form-group {
            margin-bottom: 1.5rem;
        }
        
        .login-form-label {
            color: #2C3E50;
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 0.6rem;
            display: block;
        }
        
        .login-form-input {
            background: #FFFFFF;
            border: 1px solid #DFE6E9;
            border-radius: 8px;
            padding: 0.9rem 1.1rem;
            font-size: 1rem;
            color: #2C3E50;
            width: 100%;
            transition: all 0.3s ease;
        }
        
        .login-form-input:focus {
            outline: none;
            border-color: #00B894;
            box-shadow: 0 0 0 3px rgba(0, 184, 148, 0.1);
        }
        
        .login-form-input::placeholder {
            color: #B2BEC3;
        }
        
        .login-password-wrapper {
            position: relative;
        }
        
        .login-password-toggle {
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #95A5A6;
            cursor: pointer;
            font-size: 1.1rem;
            padding: 0.5rem;
        }
        
        .login-forgot-link {
            color: #636E72;
            font-size: 0.9rem;
            text-decoration: none;
            display: block;
            text-align: right;
            margin-top: 0.5rem;
            margin-bottom: 1.5rem;
        }
        
        .login-forgot-link:hover {
            color: #2C3E50;
        }
        
        .login-button {
            width: 100%;
            background: #00B894;
            color: #FFFFFF;
            border: none;
            padding: 1rem 2rem;
            font-size: 1rem;
            font-weight: 700;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .login-button:hover {
            background: #00A884;
        }
        
        .login-button:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }
        
        .login-signup {
            text-align: center;
            color: #636E72;
            font-size: 0.95rem;
            margin-top: 10px;
            
        }
        
        .login-signup-link {
            color: #00B894;
            text-decoration: none;
            font-weight: 600;
        }
        
        .login-signup-link:hover {
            text-decoration: underline;
        }
        
        .login-alert {
            padding: 1rem 1.2rem;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            display: none;
            font-size: 0.95rem;
        }
        
        .login-alert-success {
            background: #D5F4E6;
            border: 1px solid #00B894;
            color: #00875A;
        }
        
        .login-alert-error {
            background: #FFE0E0;
            border: 1px solid #FF6B6B;
            color: #D63031;
        }
        
        /* Mobile Responsive */
        @media (max-width: 992px) {
            .login-split-container {
                flex-direction: column;
            }
            
            .login-left-side {
                padding: 0rem 1.5rem;
            }
            
            .login-left-title {
                font-size: 1rem;
            }
            
            .login-right-side {
                padding: 0rem 1.5rem;
            }
            
            .login-form-title {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .login-left-title {
                font-size: 1rem;
            }
            
            .login-form-title {
                font-size: 1.75rem;
            }
        }
