 :root {
            --primary: #0078d7;
            --primary-hover: #106ebe;
            --primary-active: #005a9e;
            --border: #d6d6d6;
            --window-bg: #f0f0f0;
            --title-bar: #3c3c3c;
            --title-text: white;
            --form-bg: white;
            --text-dark: #333;
            --text-light: #666;
			--primary: #0078d7;
            --danger: #d83b01;
            --danger-hover: #b32d00;
            --success: #107c10;
            --status-bg: #e5e5e5;
            --status-text: #333;
            --form-bg: white;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--window-bg);
            height: 100vh;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .title-bar {
            background-color: var(--title-bar);
            color: var(--title-text);
            padding: 8px 12px;
            font-size: 14px;
            font-weight: 500;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .login-container {
            display: flex;
            flex: 1;
            overflow: hidden;
        }

        @media (max-width: 768px) {
            .login-container {
                flex-direction: column;
            }
        }

        .login-form {
            flex: 1;
            max-width: 400px;
            background-color: var(--form-bg);
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        @media (max-width: 768px) {
            .login-form {
                max-width: 100%;
                padding: 30px 20px;
                order: 2;
            }
        }

        .logo {
            text-align: center;
            margin-bottom: 30px;
        }

        .logo img {
            max-width: 150px;
            height: auto;
        }

        .form-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 30px;
            color: var(--text-dark);
            text-align: center;
        }

        .form-group {
            margin-bottom: 20px;
        }

        label {
            display: block;
            margin-bottom: 8px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-dark);
        }

        input {
            width: 100%;
            padding: 10px 12px;
            border: 1px solid var(--border);
            border-radius: 3px;
            font-size: 14px;
        }

        input:focus {
            outline: 2px solid var(--primary);
            outline-offset: -1px;
        }

        .btn-login {
            width: 100%;
            padding: 10px;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: 3px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            margin-top: 10px;
        }

        .btn-login:hover {
            background-color: var(--primary-hover);
        }

        .btn-login:active {
            background-color: var(--primary-active);
        }

        .image-slider {
            flex: 1;
            background-color: #e5e5e5;
            position: relative;
            overflow: hidden;
        }

        @media (max-width: 768px) {
            .image-slider {
                height: 200px;
                order: 1;
            }
        }

        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .slide.active {
            opacity: 1;
        }

        .slide-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.5);
            color: white;
            padding: 20px;
            text-align: center;
        }

        .slide-title {
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 5px;
        }

        .slide-desc {
            font-size: 14px;
        }

        .slide-nav {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .slide-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
        }

        .slide-dot.active {
            background-color: white;
        }

        .footer {
            padding: 10px 15px;
            background-color: var(--form-bg);
            border-top: 1px solid var(--border);
            font-size: 12px;
            color: var(--text-light);
            text-align: center;
        }

        .version {
            margin-top: 5px;
            font-size: 11px;
        }
		.notification {
            position: fixed;
            bottom: 20px;
            right: 20px;
            padding: 12px 16px;
            background-color: var(--success);
            color: white;
            border-radius: 4px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            transform: translateY(100px);
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .notification.show {
            transform: translateY(0);
            opacity: 1;
        }

        .notification.error {
            background-color: var(--danger);
        }
