        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            min-height: 100vh;
            overflow-x: hidden;
        }

        .container {
            display: flex;
            min-height: 100vh;
            max-width: none !important;
        }

        @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; } }

        .left-panel {
            flex: 0 0 33.33%;
            background: white;
            display: flex;
            flex-direction: column;
            padding: 40px 60px;
        }

        .logo {
            margin-bottom: 80px;
        }

        .logo img {
            width: 140px;
            height: auto;
        }

        .login-form {
            max-width: 360px;
            width: 100%;
            margin: auto 0;
        }

        .login-form h2 {
            font-size: 24px;
            font-weight: 400;
            color: rgba(0, 0, 0, 0.87);
            margin-bottom: 32px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group input {
            width: 100%;
            padding: 12px 16px;
            font-size: 14px;
            font-family: 'Open Sans', sans-serif;
            border: 1px solid #d1d1d1;
            border-radius: 4px;
            outline: none;
            transition: border-color 0.3s;
        }

        .form-group input:focus {
            border-color: rgb(192, 3, 104);
        }

        .form-group input::placeholder {
            color: #999;
        }

        .password-wrapper {
            position: relative;
        }

        .password-wrapper input {
            padding-right: 45px;
        }

        .toggle-password {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            color: #666;
            font-size: 18px;
            user-select: none;
        }

        .login-button {
            width: 100%;
            padding: 12px;
            font-size: 14px;
            font-weight: 600;
            font-family: 'Open Sans', sans-serif;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 8px;
            margin-bottom: 16px;
            transition: all 0.3s;
            position: relative;
        }

        .login-button.active {
            background-color: rgb(192, 3, 104);
            color: white;
        }

        .login-button.inactive {
            background-color: #e0e0e0;
            color: #999;
            cursor: not-allowed;
        }

        .login-button.loading {
            background-color: rgb(192, 3, 104);
            color: white;
            pointer-events: none;
        }

        .btn-loader {
            display: inline-block;
            width: 14px;
            height: 14px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-top-color: white;
            border-radius: 50%;
            animation: spin 0.6s linear infinite;
            margin-left: 8px;
            vertical-align: middle;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .forgot-password {
            text-align: center;
        }

        .forgot-password a {
            color: rgba(0, 0, 0, 0.87);
            text-decoration: none;
            font-size: 14px;
            transition: opacity 0.3s;
            cursor: pointer;
        }

        .forgot-password a:hover {
            opacity: 0.7;
        }

        .right-panel {
            flex: 1;
            background-image: url('kGoROE4fjGKOQ-QuKOddt.jpeg');
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .hero-content {
            flex: 1;
            display: flex;
            align-items: center;
            padding: 80px;
        }

        .hero-text {
            max-width: 600px;
        }

        .hero-text h1 {
            font-size: 48px;
            font-weight: 700;
            color: white;
            line-height: 1.2;
            margin-bottom: 24px;
        }

        .hero-text p {
            font-size: 16px;
            color: white;
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .learn-more-btn {
            display: inline-block;
            padding: 10px 24px;
            background: white;
            color: rgb(192, 3, 104);
            text-decoration: none;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-radius: 4px;
            margin-top: 16px;
            transition: opacity 0.3s;
            cursor: pointer;
        }

        .learn-more-btn:hover {
            opacity: 0.9;
        }

        .info-boxes {
            position: absolute;
            top: 40px;
            right: 40px;
            display: flex;
            flex-direction: column;
            gap: 24px;
            max-width: 340px;
        }

        .info-box {
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(10px);
            padding: 20px;
            border-radius: 4px;
        }

        .info-box h3 {
            font-size: 11px;
            font-weight: 700;
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .info-box p {
            font-size: 13px;
            color: white;
            line-height: 1.5;
        }

        /* Notification Styles */
        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            padding: 16px 20px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            min-width: 320px;
            max-width: 420px;
            z-index: 9999;
            animation: slideIn 0.3s ease-out;
        }

        .notification.hide {
            animation: slideOut 0.3s ease-in forwards;
        }

        @keyframes slideIn {
            from {
                transform: translateX(120%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes slideOut {
            from {
                transform: translateX(0);
                opacity: 1;
            }
            to {
                transform: translateX(120%);
                opacity: 0;
            }
        }

        .notification-icon {
            width: 24px;
            height: 24px;
            color: #f59e0b;
            flex-shrink: 0;
        }

        .notification-content {
            flex: 1;
        }

        .notification-title {
            font-weight: 600;
            font-size: 14px;
            color: #111827;
            margin-bottom: 4px;
        }

        .notification-message {
            font-size: 13px;
            color: #6b7280;
            line-height: 1.4;
        }

        .notification-close {
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
            color: #9ca3af;
            transition: color 0.2s;
            flex-shrink: 0;
        }

        .notification-close:hover {
            color: #4b5563;
        }

        /* Mobile Responsive */
        @media (max-width: 1024px) {
            .container {
                flex-direction: column;
            }

            .left-panel {
                flex: none;
                padding: 30px 24px;
                min-height: 100vh;
            }

            .right-panel {
                display: none;
            }

            .logo {
                margin-bottom: 60px;
            }

            .login-form {
                margin: 0;
            }
        }

        @media (max-width: 768px) {
            .left-panel {
                padding: 24px 20px;
            }

            .logo img {
                width: 120px;
            }

            .login-form h2 {
                font-size: 20px;
                margin-bottom: 24px;
            }

            .form-group input {
                padding: 10px 14px;
                font-size: 16px;
            }

            .notification {
                min-width: auto;
                max-width: calc(100vw - 40px);
                right: 20px;
                left: 20px;
            }
        }

        @media (max-width: 480px) {
            .left-panel {
                padding: 20px 16px;
            }

            .logo {
                margin-bottom: 40px;
            }

            .notification {
                top: 10px;
                right: 10px;
                left: 10px;
                padding: 12px 16px;
            }

            .notification-title {
                font-size: 13px;
            }

            .notification-message {
                font-size: 12px;
            }
        }

        @media (min-width: 1025px) {
            .info-boxes {
                top: 40px;
                right: 40px;
            }

            .hero-content {
                padding: 80px;
            }

            .hero-text h1 {
                font-size: 48px;
            }
        }

        @media (max-width: 1280px) and (min-width: 1025px) {
            .info-boxes {
                max-width: 280px;
            }

            .hero-content {
                padding: 60px;
            }

            .hero-text h1 {
                font-size: 40px;
            }

            .hero-text p {
                font-size: 15px;
            }
        }