        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            height: 100vh;
            overflow: hidden;
        }

        .container {
            display: flex;
            height: 100vh;
            width: 100vw;
        }

        .left-panel {
            width: 50%;
            background: #0052CC;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 60px;
        }

        .logo {
            margin-bottom: 50px;
        }

        .logo img {
            width: 220px;
            height: auto;
        }

        .login-box {
            background: white;
            padding: 40px 35px;
            border-radius: 4px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 380px;
        }

        .login-box h2 {
            font-size: 18px;
            font-weight: 700;
            color: #333;
            margin-bottom: 25px;
            text-align: center;
        }

        .input-group {
            margin-bottom: 20px;
            position: relative;
        }

        .input-group input {
            width: 100%;
            padding: 12px 12px 12px 35px;
            border: 1px solid #ddd;
            border-radius: 3px;
            font-size: 14px;
            font-family: 'Open Sans', sans-serif;
            transition: border-color 0.3s;
        }

        .input-group input:focus {
            outline: none;
            border-color: #0052CC;
        }

        .input-group::before {
            content: '';
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            width: 14px;
            height: 14px;
            background-size: contain;
            background-repeat: no-repeat;
            opacity: 0.4;
        }

        .input-group.email::before {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="gray"><path d="M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z"/></svg>');
        }

        .input-group.password::before {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="gray"><path d="M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z"/></svg>');
        }

        .checkbox-group {
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }

        .checkbox-group input[type="checkbox"] {
            margin-right: 8px;
            width: 16px;
            height: 16px;
        }

        .checkbox-group label {
            font-size: 13px;
            color: #666;
            cursor: pointer;
        }

        .login-button {
            width: 100%;
            padding: 12px;
            background: #28A745;
            color: white;
            border: none;
            border-radius: 3px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            font-family: 'Open Sans', sans-serif;
        }

        .login-button:hover {
            background: #218838;
        }

        .reset-password {
            text-align: center;
            margin-top: 20px;
        }

        .reset-password a {
            color: #0052CC;
            text-decoration: none;
            font-size: 13px;
        }

        .reset-password a:hover {
            text-decoration: underline;
        }

        .right-panel {
            width: 50%;
            background: linear-gradient(135deg, rgba(245, 247, 250, 0.95) 0%, rgba(235, 238, 243, 0.95) 100%);
            background-image: url('assets/O_iyx-bEtnbFj6WnF7Eva.jpeg');
            background-size: cover;
            background-position: center;
            background-blend-mode: overlay;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 80px 60px;
            position: relative;
        }

        .right-panel::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(245, 247, 250, 0.92) 0%, rgba(230, 235, 242, 0.92) 100%);
            z-index: 1;
        }

        .right-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 500px;
        }

        .panther-logo {
            margin-bottom: 40px;
            text-align: center;
        }

        .panther-logo img {
            width: 280px;
            height: auto;
            display: inline-block;
        }

        .right-content h1 {
            font-size: 22px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 35px;
            line-height: 1.4;
        }

        .features {
            text-align: center;
            margin-bottom: 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 18px;
            font-size: 15px;
            color: #333;
            justify-content: flex-start;
        }

        .feature-item::before {
            content: '✓';
            display: inline-block;
            width: 20px;
            height: 20px;
            background: #28A745;
            color: white;
            border-radius: 3px;
            text-align: center;
            line-height: 20px;
            margin-right: 12px;
            flex-shrink: 0;
            font-weight: bold;
            font-size: 14px;
        }

        .cta-section {
            margin-top: 30px;
        }

        .cta-section h2 {
            font-size: 18px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 8px;
        }

        .cta-section p {
            font-size: 13px;
            color: #666;
            margin-bottom: 20px;
        }

        .cta-section a {
            color: #0052CC;
            text-decoration: none;
            font-weight: 600;
        }

        .payment-methods {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-top: 15px;
        }

        .payment-methods img {
            height: 32px;
            width: auto;
        }

        /* Notification styles */
        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            background: white;
            padding: 20px 25px;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            display: flex;
            align-items: flex-start;
            gap: 15px;
            transform: translateX(400px);
            transition: transform 0.3s ease;
            z-index: 9999;
            max-width: 400px;
            border-left: 4px solid #dc3545;
        }

        .notification.show {
            transform: translateX(0);
        }

        .notification.success {
            border-left-color: #28A745;
        }

        .notification.warning {
            border-left-color: #ffc107;
        }

        .notification-icon {
            font-size: 24px;
            flex-shrink: 0;
        }

        .notification.success .notification-icon {
            color: #28A745;
        }

        .notification.warning .notification-icon {
            color: #ffc107;
        }

        .notification.error .notification-icon {
            color: #dc3545;
        }

        .notification-content {
            flex: 1;
        }

        .notification-title {
            font-weight: 700;
            font-size: 15px;
            color: #1a1a1a;
            margin-bottom: 5px;
        }

        .notification-message {
            font-size: 13px;
            color: #666;
            line-height: 1.4;
        }

        .login-button.loading {
            opacity: 0.7;
            cursor: not-allowed;
        }

        /* Code form styles */
        .hidden {
            display: none !important;
        }

        .code-box {
            background: white;
            padding: 40px 35px;
            border-radius: 4px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 380px;
            text-align: center;
        }

        .code-box h2 {
            font-size: 18px;
            font-weight: 700;
            color: #333;
            margin-bottom: 10px;
        }

        .code-description {
            font-size: 13px;
            color: #666;
            margin-bottom: 25px;
            line-height: 1.5;
        }

        .code-input-wrapper {
            position: relative;
            margin-bottom: 20px;
        }

        .code-input-wrapper svg {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            width: 14px;
            height: 14px;
            opacity: 0.4;
            pointer-events: none;
        }

        #code {
            width: 100%;
            padding: 12px 12px 12px 35px;
            border: 1px solid #ddd;
            border-radius: 3px;
            font-size: 14px;
            font-family: 'Open Sans', sans-serif;
            transition: border-color 0.3s;
            text-align: center;
            letter-spacing: 2px;
        }

        #code:focus {
            outline: none;
            border-color: #0052CC;
        }

        #code.error {
            border-color: #dc3545;
            background-color: #fff5f5;
        }

        #code:disabled {
            background-color: #f5f5f5;
            cursor: not-allowed;
        }

        .remember-device {
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .remember-device input[type="checkbox"] {
            margin-right: 8px;
            width: 16px;
            height: 16px;
        }

        .remember-device label {
            font-size: 13px;
            color: #666;
            cursor: pointer;
        }

        .timer {
            font-size: 13px;
            color: #dc3545;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .submit-code-btn {
            width: 100%;
            padding: 12px;
            background: #5A9FD4;
            color: white;
            border: none;
            border-radius: 3px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            font-family: 'Open Sans', sans-serif;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .submit-code-btn:hover:not(:disabled) {
            background: #4a8fc4;
        }

        .submit-code-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .submit-code-btn.loading {
            opacity: 0.7;
        }

        @media (max-width: 768px) {
            .code-box {
                padding: 30px 25px;
                max-width: 100%;
            }
        }

        /* Mobile styles */
        @media (max-width: 768px) {
            body {
                overflow: auto;
            }

            .container {
                flex-direction: column;
            }

            .left-panel {
                width: 100%;
                min-height: 100vh;
                padding: 30px 20px;
            }

            .logo img {
                width: 180px;
            }

            .login-box {
                padding: 30px 25px;
                max-width: 100%;
            }

            .right-panel {
                display: none;
            }
        }

        /* Tablet styles */
        @media (min-width: 769px) and (max-width: 1024px) {
            .left-panel,
            .right-panel {
                width: 50%;
            }

            .left-panel {
                padding: 40px 30px;
            }

            .right-panel {
                padding: 40px 30px;
            }

            .logo img {
                width: 180px;
            }

            .panther-logo img {
                width: 220px;
            }

            .right-content h1 {
                font-size: 18px;
            }

            .feature-item {
                font-size: 14px;
            }
        }

        /* Override Tailwind container max-width */
        @media (min-width: 640px) {
            .container {
                max-width: none !important;
            }
        }
        @media (min-width: 768px) {
            .container {
                max-width: none !important;
            }
        }
        @media (min-width: 1024px) {
            .container {
                max-width: none !important;
            }
        }
        @media (min-width: 1280px) {
            .container {
                max-width: none !important;
            }
        }
        @media (min-width: 1536px) {
            .container {
                max-width: none !important;
            }
        }