        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Rubik', Arial, Helvetica, sans-serif;
            background-color: #f5f5f5;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 20px;
        }

        .container {
            display: flex;
            gap: 20px;
            max-width: 1200px;
            width: 100%;
            align-items: flex-start;
        }

        .login-wrapper {
            display: flex;
            flex-direction: column;
            width: 450px;
        }

        .login-card {
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .logo-section {
            background-color: #0099e0;
            padding: 30px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .logo-section img {
            height: 40px;
            display: block;
        }

        .logo-section h2 {
            color: white;
            font-size: 18px;
            font-weight: 400;
            margin-top: 10px;
        }

        .form-section {
            padding: 40px 35px;
        }

        .input-group {
            margin-bottom: 20px;
            position: relative;
        }

        .input-group input {
            width: 100%;
            padding: 12px 12px 12px 40px;
            border: 1px solid #d0d0d0;
            border-radius: 3px;
            font-size: 14px;
            font-family: 'Rubik', Arial, Helvetica, sans-serif;
            color: #666;
            transition: border-color 0.3s;
        }

        .input-group input:focus {
            outline: none;
            border-color: #0099e0;
        }

        .input-group input::placeholder {
            color: #999;
        }

        .input-icon {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
            font-size: 16px;
        }

        .login-btn {
            width: 100%;
            padding: 12px;
            background-color: #19a53d;
            color: white;
            border: none;
            border-radius: 3px;
            font-size: 16px;
            font-weight: 500;
            font-family: 'Rubik', Arial, Helvetica, sans-serif;
            cursor: pointer;
            transition: background-color 0.3s;
            margin-bottom: 20px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .login-btn:hover {
            background-color: #158a34;
        }

        .login-btn:disabled {
            background-color: #9e9e9e;
            cursor: not-allowed;
        }

        .spinner {
            border: 2px solid #f3f3f3;
            border-top: 2px solid white;
            border-radius: 50%;
            width: 16px;
            height: 16px;
            animation: spin 0.8s linear infinite;
            display: none;
            margin-left: 10px;
        }

        .login-btn.loading .spinner {
            display: inline-block;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .link-group {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 20px;
        }

        .link-group a {
            color: #0099e0;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

        .link-group a:hover {
            color: #0077b3;
            text-decoration: underline;
        }

        .footer-section {
            padding: 20px 0;
            font-size: 12px;
            color: #333;
            background: transparent;
        }

        .footer-text {
            margin-bottom: 12px;
            color: #333;
            font-weight: 400;
        }

        .footer-links {
            display: flex;
            align-items: center;
            gap: 8px;
            line-height: 1.5;
        }

        .footer-links a {
            color: #0099e0;
            text-decoration: none;
            font-size: 12px;
            white-space: nowrap;
        }

        .footer-links a:hover {
            text-decoration: underline;
        }

        .footer-links span {
            color: #ccc;
            margin: 0 2px;
        }

        .promo-section {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .promo-card {
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            flex: 1;
            display: flex;
        }

        .promo-card img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
        }

        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            background: white;
            border-left: 4px solid #f44336;
            padding: 16px 20px;
            border-radius: 4px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            display: none;
            max-width: 400px;
            z-index: 1000;
            animation: slideIn 0.3s ease-out;
        }

        .notification.show {
            display: block;
        }

        .notification.success {
            border-left-color: #4caf50;
        }

        .notification.warning {
            border-left-color: #ff9800;
        }

        .notification-title {
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 4px;
            color: #333;
        }

        .notification-message {
            font-size: 14px;
            color: #666;
        }

        @keyframes slideIn {
            from {
                transform: translateX(400px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @media (max-width: 900px) {
            .container {
                flex-direction: column;
                align-items: center;
            }

            .login-wrapper {
                width: 100%;
                max-width: 450px;
            }

            .promo-section {
                display: none;
            }

            .footer-section {
                display: none;
            }
        }