        /* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #1e263c;
            color: #fff;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        a {
            text-decoration: none;
            color: #ff6b00;
        }
        
        a:hover {
            text-decoration: underline;
        }
        
        /* Header */
        header {
            background-color: #21293e;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.8rem 2rem;
        }
        
        .logo {
            height: 32px;
        }
        
        .search-bar {
            display: flex;
            flex: 1;
            max-width: 500px;
            margin: 0 1rem;
            position: relative;
        }
        
        .search-input {
            width: 100%;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            border: none;
            background-color: #343e59;
            color: white;
        }
        
        .search-input::placeholder {
            color: #9aa0b1;
        }
        
        .search-btn {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #9aa0b1;
            cursor: pointer;
        }
        
        .header-right {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .btn-login {
            background-color: #ff6b00;
            color: white;
            padding: 0.5rem 1.2rem;
            border-radius: 4px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        
        .language-selector {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .flag-icon {
            width: 24px;
            height: 24px;
            border-radius: 50%;
        }
        
        /* Login container */
        .login-container {
            display: flex;
            width: 100%;
            max-width: 900px;
            background-color: #2a3550;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            margin-top: 60px;
        }
        
        /* Login banner */
        .login-banner {
            flex: 1;
            background: linear-gradient(135deg, #2c3e50, #4ca1af);
            padding: 2rem;
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .banner-logo {
            height: 35px;
            margin-bottom: 2rem;
        }
        
        .banner-title {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }
        
        .banner-text {
            font-size: 0.95rem;
            opacity: 0.9;
            margin-bottom: 2rem;
        }
        
        .banner-img {
            max-width: 100%;
            height: auto;
            margin-top: auto;
        }
        
        /* Login form */
        .login-form-container {
            flex: 1;
            padding: 2.5rem;
            display: flex;
            flex-direction: column;
        }
        
        .form-header {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .form-title {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
            color: #fff;
        }
        
        .form-subtitle {
            color: #9aa0b1;
            font-size: 0.9rem;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
            color: #9aa0b1;
        }
        
        .form-input {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #343e59;
            background-color: #343e59;
            border-radius: 4px;
            font-size: 1rem;
            color: white;
        }
        
        .form-input:focus {
            border-color: #ff6b00;
            outline: none;
            box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.1);
        }
        
        .form-options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            font-size: 0.85rem;
        }
        
        .remember-me {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #9aa0b1;
        }
        
        .btn-login-form {
            width: 100%;
            background-color: #ff6b00;
            color: white;
            border: none;
            padding: 0.8rem;
            border-radius: 4px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .btn-login-form:hover {
            background-color: #e85f00;
        }
        
        .login-divider {
            display: flex;
            align-items: center;
            margin: 1.5rem 0;
            color: #9aa0b1;
            font-size: 0.85rem;
        }
        
        .divider-line {
            flex: 1;
            height: 1px;
            background-color: #343e59;
        }
        
        .divider-text {
            padding: 0 1rem;
        }
        
        .social-login {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .social-btn {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.7rem;
            border: 1px solid #343e59;
            background-color: #2a3550;
            border-radius: 4px;
            font-size: 0.9rem;
            color: #9aa0b1;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .social-btn:hover {
            background-color: #343e59;
        }
        
        .register-prompt {
            text-align: center;
            font-size: 0.9rem;
            margin-top: auto;
            color: #9aa0b1;
        }
        
        /* Cookie banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            width: 100%;
            background-color: rgba(33, 41, 62, 0.95);
            padding: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-top: 1px solid #343e59;
        }
        
        .cookie-text {
            font-size: 0.9rem;
            color: #9aa0b1;
            margin-right: 1rem;
        }
        
        .cookie-link {
            color: #ff6b00;
            text-decoration: underline;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 0.5rem;
        }
        
        .cookie-btn {
            padding: 0.5rem 1rem;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 600;
            cursor: pointer;
        }
        
        .btn-settings {
            background-color: #343e59;
            color: white;
            border: none;
        }
        
        .btn-allow {
            background-color: #ff6b00;
            color: white;
            border: none;
        }
        
        .btn-decline {
            background-color: #e74c3c;
            color: white;
            border: none;
        }
        
        /* WhatsApp floating button */
        .whatsapp-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background-color: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            z-index: 95;
        }
        
        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .nav-container {
                padding: 0.8rem 1rem;
            }
            
            .search-bar {
                display: none;
            }
            
            .login-container {
                flex-direction: column;
                max-width: 400px;
                margin: 1rem;
                margin-top: 80px;
            }
            
            .login-banner {
                padding: 1.5rem;
                text-align: center;
            }
            
            .banner-img {
                display: none;
            }
            
            .login-form-container {
                padding: 1.5rem;
            }
            
            .cookie-banner {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .cookie-buttons {
                margin-top: 1rem;
                width: 100%;
                justify-content: space-between;
            }
        }