/* ===== Inline style block 1 from login-new.html ===== */
/* ================= RESET ================= */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            overflow-x: hidden;
        }

        /* ================= PAGE WRAPPER ================= */
        .page-wrapper {
            position: relative;
            width: 100%;
            min-height: 100vh;
        }

        /* ================= FULL BACKGROUND SLIDER ================= */
        .hero-slider {
            position: fixed;
            inset: 0;
            z-index: -2;
        }

        .hero-image {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            animation: bgSlide 36s infinite;
        }

        .hero-image:nth-child(1) { animation-delay: 0s; }
        .hero-image:nth-child(2) { animation-delay: 6s; }
        .hero-image:nth-child(3) { animation-delay: 12s; }
        .hero-image:nth-child(4) { animation-delay: 18s; }
        .hero-image:nth-child(5) { animation-delay: 24s; }
        .hero-image:nth-child(6) { animation-delay: 30s; }

        @keyframes bgSlide {
            0% { opacity: 0; }
            8% { opacity: 1; }
            30% { opacity: 1; }
            38% { opacity: 0; }
            100% { opacity: 0; }
        }

        /* Dark overlay */
        .page-wrapper::before {
            content: "";
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.45);
            z-index: -1;
        }

        /* ================= HEADER ================= */
        .main-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 64px;
            padding: 12px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: #390c4b;
            backdrop-filter: blur(8px);
            z-index: 1000;
        }

        .logo-left {
            height: 40px;
        }

        .header-title {
            color: #ffffff;
            font-size: 14px;
            font-weight: 500;
        }

        /* ================= MAIN LOGIN ================= */
        .left-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-top: 64px;
            z-index: 2;
        }

        /* ================= GLASS CARD ================= */
        .login-container {
            width: 100%;
            max-width: 460px;
            padding: 48px;
            border-radius: 16px;
            background: rgba(255,255,255,0.18);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.35);
        }

        /* ================= TEXT ================= */
        .welcome-text {
            font-size: 26px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 8px;
        }

        .subtitle {
            font-size: 14px;
            color: #e0e0e0;
            margin-bottom: 32px;
        }

        /* ================= INPUTS ================= */
        .input-field {
            margin-bottom: 20px;
        }

        label {
            font-size: 13px;
            color: #ffffff;
            font-weight: 500;
            margin-bottom: 8px;
            display: block;
        }

        label i {
            margin-right: 6px;
        }

        input[type="text"],
        input[type="password"] {
            width: 100%;
            padding: 12px 14px;
            border-radius: 8px;
            border: none;
            background: rgba(255,255,255,0.9);
            font-size: 14px;
        }

        input::placeholder {
            color: #6c757d;
        }

        input:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(52,44,104,0.35);
        }

        /* ================= PASSWORD ================= */
        .password-wrapper {
            position: relative;
        }

        .toggle-password {
            position: absolute;
            right: 14px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            cursor: pointer;
            color: #6c757d;
        }

        /* ================= CAPTCHA ================= */
        .captcha-row {
            display: grid;
            grid-template-columns: 160px 46px 1fr;
            gap: 12px;
            align-items: flex-end;
            margin-bottom: 20px;
        }

        .captcha-group {
            display: flex;
            flex-direction: column;
        }

        .captcha-group label {
            margin-bottom: 8px;
        }

        .captcha-box {
            height: 46px;
            min-width: 160px;
            background: rgba(255,255,255,0.9);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            letter-spacing: 3px;
            user-select: none;
        }

        .captcha-group input {
            height: 46px;
            padding: 12px 14px;
            border-radius: 8px;
            border: none;
            background: rgba(255,255,255,0.9);
        }

        .refresh-captcha {
            width: 46px;
            height: 46px;
            align-self: flex-end;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.9);
            border: none;
            cursor: pointer;
        }

        .refresh-captcha:hover {
            background: #390c4b;
            color: #ffffff;
        }

        /* ================= EXTRAS (ONE LINE FIX) ================= */
        .form-extras {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 24px;
            font-size: 13px;
            color: #ffffff;
            flex-wrap: nowrap;
        }

        .remember {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }

        .forgot-link {
            color: #ffffff;
            text-decoration: underline;
            white-space: nowrap;
        }

        /* ================= BUTTON ================= */
        .login-btn {
            width: 100%;
            padding: 14px;
            border-radius: 8px;
            border: none;
            background: #390c4b;
            color: #ffffff;
            font-weight: 600;
            cursor: pointer;
        }

        .login-btn:hover {
            background: #241f52;
        }

        /* ================= FOOTER ================= */
        .main-footer {
            position: fixed;
            bottom: 24px;
            left: 24px;
            z-index: 10;
        }

        .logo-bottom-right {
            height: 50px;
            filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
        }

        /* ================= RESPONSIVE ================= */
        @media (max-width: 768px) {
            .left-section {
                padding: 80px 30px;
            }

            .login-container {
                padding: 36px;
            }
        }

        @media (max-width: 480px) {
            .captcha-row {
                grid-template-columns: 1fr;
                align-items: stretch;
            }

            .refresh-captcha {
                width: 100%;
            }
        }

        @media (max-width: 360px) {
            .form-extras {
                flex-direction: column;
                align-items: flex-start;
            }
        }

