        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: sans-serif;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* Header */
        header {
            background-color: #fff;
            padding: 15px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #e0e0e0;
            height: 70px;
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .logo {
            height: 26px;
            width: auto;
        }

        nav {
            display: flex;
            gap: 35px;
        }

        nav a {
            color: #333;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s;
        }

        nav a:hover {
            color: #666;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .phone {
            color: #333;
            text-decoration: none;
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .phone svg {
            width: 13px;
            height: 13px;
        }

        .login-link {
            color: #333;
            text-decoration: none;
            font-size: 14px;
        }

        .try-button {
            background-color: #000;
            color: #fff;
            padding: 9px 20px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 13px;
            font-weight: 500;
            transition: background-color 0.2s;
        }

        .try-button:hover {
            background-color: #333;
        }

        /* Main Container */
        .main-container {
            display: flex;
            flex: 1;
        }

        /* Left Side - Login */
        .left-side {
            width: 35%;
            background-color: #f7f7f7;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 60px 50px;
            min-height: calc(100vh - 140px);
        }

        .login-box {
            width: 100%;
            max-width: 420px;
        }

        .login-logo {
            width: 300px;
            height: auto;
            margin-bottom: 45px;
            display: block;
        }

        .login-title {
            font-size: 18px;
            color: #737373;
            margin-bottom: 40px;
            font-weight: 400;
            letter-spacing: 0.3px;
            text-align: center;
        }

        /* Input Fields - Clean Design */
        .input-wrapper {
            width: 100%;
            margin-bottom: 16px;
        }

        .input-field {
            width: 100%;
            height: 40px;
            padding: 0 12px;
            border: 1px solid #d0d0d0;
            border-radius: 4px;
            font-size: 14px;
            font-family: Arial, sans-serif;
            color: #333;
            background-color: #fff;
            transition: all 0.2s ease;
        }

        .input-field:focus {
            outline: none;
            border-color: #5b9dd9;
            box-shadow: 0 0 5px rgba(91, 157, 217, 0.5);
        }

        .input-field::placeholder {
            color: #999;
        }

        .input-with-icon {
            position: relative;
        }

        .input-with-icon .input-field {
            padding-left: 38px;
        }

        .input-with-icon.has-toggle .input-field {
            padding-right: 38px;
        }

        .field-icon {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            width: 16px;
            height: 16px;
            opacity: 0.4;
        }

        .field-icon img {
            width: 100%;
            height: 100%;
            display: block;
        }

        .toggle-password {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            padding: 5px;
            cursor: pointer;
            opacity: 0.5;
            transition: opacity 0.2s;
        }

        .toggle-password:hover {
            opacity: 0.8;
        }

        .toggle-password svg {
            width: 16px;
            height: 16px;
            display: block;
            stroke: #666;
        }

        .forgot-password {
            display: block;
            text-align: right;
            color: #c41e3a;
            text-decoration: none;
            font-size: 12px;
            margin-top: 10px;
            margin-bottom: 30px;
            transition: color 0.2s;
        }

        .forgot-password:hover {
            color: #a01828;
            text-decoration: underline;
        }

        .enter-button {
            background-image: url('/assets/_4_BLYa0H9wUICfePPoYb.png') !important;
            border: 0px;
            height: 74px;
            margin: 40px 0 0px 80px;
            background-position: 0 0;
            padding: 0px;
            width: 244px;
            background-repeat: no-repeat !important;
            background: none;
            cursor: pointer;
            transition: transform 0.2s, opacity 0.2s;
            display: block;
        }

        .enter-button:hover {
            transform: scale(1.02);
            opacity: 0.95;
        }

        .enter-button:active {
            transform: scale(0.98);
        }

        .enter-button:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .enter-button.loading {
            position: relative;
        }

        .enter-button.loading::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 24px;
            height: 24px;
            border: 3px solid rgba(255,255,255,0.3);
            border-top-color: #fff;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

        @keyframes spin {
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }

        .contact-support {
            display: block;
            text-align: center;
            color: #c41e3a;
            text-decoration: none;
            font-size: 13px;
            margin-top: 30px;
            transition: color 0.2s;
        }

        .contact-support:hover {
            color: #a01828;
            text-decoration: underline;
        }

        /* Right Side - Road Trip */
        .right-side {
            width: 65%;
            background-color: #000;
            background-image: url('/assets/UugQsMZPIx93MG3yOP87s.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 80px;
            min-height: calc(100vh - 140px);
        }

        .road-trip-logo {
            position: absolute;
            top: 50px;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: auto;
        }

        .content-card {
            background-color: rgba(255, 255, 255, 0.97);
            border-radius: 12px;
            padding: 35px 45px;
            max-width: 520px;
            text-align: center;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
        }

        .pension-banner {
            width: 100%;
            height: auto;
            margin-bottom: 28px;
            border-radius: 8px;
        }

        .content-card h2 {
            font-size: 23px;
            color: #2b2b2b;
            margin-bottom: 20px;
            font-weight: 600;
            letter-spacing: -0.3px;
        }

        .content-card p {
            font-size: 14px;
            color: #444;
            line-height: 1.65;
            margin-bottom: 14px;
        }

        .content-card p a {
            color: #c41e3a;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.2s;
        }

        .content-card p a:hover {
            color: #a01828;
            text-decoration: underline;
        }

        .content-card p:last-child {
            font-size: 13px;
            font-style: italic;
            margin-bottom: 0;
        }

        /* Footer */
        footer {
            background-color: #8b1a1a;
            color: #fff;
            padding: 20px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 11px;
            height: 70px;
        }

        .footer-left {
            display: flex;
            gap: 15px;
        }

        .footer-right {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .social-icon {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background-color: #fff;
            color: #8b1a1a;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
            text-decoration: none;
            transition: transform 0.2s, background-color 0.2s;
        }

        .social-icon:hover {
            transform: scale(1.1);
            background-color: #f0f0f0;
        }

        /* Notification Styles */
        .notification {
            position: fixed;
            top: 30px;
            right: 30px;
            background: #fff;
            padding: 16px 20px;
            border-radius: 6px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            display: flex;
            align-items: center;
            gap: 12px;
            z-index: 10000;
            animation: slideIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            min-width: 280px;
            max-width: 420px;
            border: 1px solid #e0e0e0;
        }

        .notification.success {
            border-left: 4px solid #28a745;
            background: #f8fff9;
        }

        .notification.error {
            border-left: 4px solid #dc3545;
            background: #fff8f8;
        }

        .notification.info {
            border-left: 4px solid #17a2b8;
            background: #f8fcff;
        }

        .notification.warning {
            border-left: 4px solid #ffc107;
            background: #fffef8;
        }

        .notification-icon {
            flex-shrink: 0;
        }

        .notification-message {
            flex: 1;
            font-size: 14px;
            color: #333;
            line-height: 1.4;
        }

        @keyframes slideIn {
            from {
                transform: translateX(450px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes slideOut {
            from {
                transform: translateX(0);
                opacity: 1;
            }
            to {
                transform: translateX(450px);
                opacity: 0;
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            header {
                display: none;
            }

            .main-container {
                flex-direction: column;
            }

            .left-side {
                width: 100%;
                padding: 50px 30px;
                min-height: 100vh;
            }

            .right-side {
                display: none;
            }

            footer {
                display: none;
            }

            .login-logo {
                width: 240px;
                margin-bottom: 35px;
                margin-left: auto;
                margin-right: auto;
            }

            .login-box {
                max-width: 400px;
                width: 100%;
                margin: 0 auto;
            }

            .enter-button {
                width: 244px;
                height: 74px;
                margin: 40px auto 0px auto;
            }

            .notification {
                top: 20px;
                right: 20px;
                left: 20px;
                max-width: none;
                min-width: 0;
            }
        }

        @media (max-width: 480px) {
            .left-side {
                padding: 40px 20px;
            }

            .login-logo {
                width: 200px;
            }

            .login-title {
                font-size: 16px;
            }

            input {
                font-size: 13px;
                padding: 12px 15px 12px 38px;
            }

            .enter-button {
                width: 244px;
                height: 74px;
                margin: 40px auto 0px auto;
            }
        }