
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body, html {
            height: 100%;
            width: 100%;
            overflow: hidden;
            background-color: #000;
        }

        /* ---------- BACKGROUND SLIDER ---------- */
        .background-slider {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .bg-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0;
            transition: opacity 2s ease-in-out;
        }

        .bg-image.visible {
            opacity: 1;
        }

        /* ---------- SEMI-TRANSPARENT BLACK OVERLAY ---------- */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.55);
            z-index: 1;
        }

        /* ---------- LOGO ---------- */
        .logo-container {
            position: fixed;
            top: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            text-align: center;
        }

        .logo-container img {
            max-height: 70px;
            width: auto;
            filter: drop-shadow(0 0 10px rgba(0,0,0,0.7));
        }

        /* ---------- LOGIN FORM ---------- */
        .login-form-container {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
            background-color: rgba(20, 20, 20, 0.75);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            padding: 40px 35px;
            width: 380px;
            max-width: 90vw;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
            transition: all 0.4s ease;
        }

        .form-title {
            color: #eaeaea;
            font-size: 17px;
            font-weight: 500;
            text-align: center;
            margin-bottom: 30px;
            line-height: 1.5;
            letter-spacing: 0.3px;
        }

        .input-group {
            margin-bottom: 18px;
        }

        .input-group label {
            display: block;
            color: #bbb;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 6px;
            font-weight: 600;
        }

        .input-group input {
            width: 100%;
            padding: 12px 15px;
            background-color: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 6px;
            color: #fff;
            font-size: 15px;
            outline: none;
            transition: border-color 0.3s;
        }

        .input-group input:focus {
            border-color: #6aa6ed;
        }

        .input-group input::placeholder {
            color: #888;
        }

        /* Button wrapper to overlay spinner */
        .button-wrapper {
            position: relative;
        }

        .enter-btn {
            width: 100%;
            padding: 13px;
            margin-top: 8px;
            background: linear-gradient(135deg, #2c3e50, #4a6580);
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 6px;
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .enter-btn:hover {
            background: linear-gradient(135deg, #3d5069, #5b7896);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .enter-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        /* ---------- SPINNER (overlay on button) ---------- */
        .spinner-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: none;
            justify-content: center;
            align-items: center;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 6px;
            z-index: 5;
        }

        .spinner-container.active {
            display: flex;
        }

        .spinner {
            width: 40px;
            height: 40px;
            border: 4px solid rgba(255, 255, 255, 0.2);
            border-top-color: #6aa6ed;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* ---------- MESSAGES ---------- */
        .message-area {
            margin-top: 25px;
            min-height: 40px;
            text-align: center;
        }

        .error-message {
            color: #ff7b7b;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.3px;
            opacity: 0;
            transition: opacity 0.5s;
        }

        .error-message.show {
            opacity: 1;
        }

        .blocked-message {
            color: #ffb347;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.3px;
            opacity: 0;
            transition: opacity 0.5s;
        }

        .blocked-message.show {
            opacity: 1;
        }

        /* ---------- RESPONSIVE ---------- */
        @media (max-width: 480px) {
            .login-form-container {
                padding: 30px 20px;
                width: 320px;
            }
            .form-title {
                font-size: 15px;
            }
            .logo-container img {
                max-height: 50px;
            }
        }
    
