/* Extracted from login.php. Rule order is preserved to keep the page visually identical. */

:root {
            --login-text: #0f172a;
            --login-muted: #64748b;
            --login-line: #cbd9eb;
            --login-blue: #1e4f9f;
            --login-blue-dark: #173e7c;
            --login-blue-soft: #edf4fc;
        }

        * {
            box-sizing: border-box;
        }

        html,
        body {
            width: 100%;
            height: 100%;
            margin: 0;
            overflow: hidden;
        }

        body.access-page {
            position: fixed;
            inset: 0;
            color: var(--login-text);
            background: #f4f7fb;
            font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            overscroll-behavior: none;
        }

        body.access-page::before {
            content: "";
            position: fixed;
            inset: 0;
            z-index: -2;
            background:
                linear-gradient(90deg, rgba(255,255,255,.34) 0%, rgba(255,255,255,.14) 52%, rgba(237,244,252,.16) 100%),
                url('/assets/images/gts-public/gts-login-bg.webp') center center / cover no-repeat;
            transform: translateZ(0);
            pointer-events: none;
        }

        body.access-page::after {
            content: "";
            position: fixed;
            inset: 0;
            z-index: -1;
            background: radial-gradient(circle at center, rgba(255,255,255,.14), transparent 54%);
            pointer-events: none;
        }

        .access-shell {
            position: fixed;
            inset: 0;
            display: grid;
            place-items: center;
            width: 100%;
            height: 100dvh;
            min-height: 100%;
            padding: 22px 16px;
            overflow-y: auto;
            overscroll-behavior: contain;
            scrollbar-width: none;
        }

        .access-shell::-webkit-scrollbar {
            display: none;
        }

        .access-card {
            width: min(100%, 500px);
            margin: auto;
            padding: 30px 32px 28px;
            border: 1px solid rgba(184, 202, 228, .94);
            border-radius: 30px;
            background: rgba(255, 255, 255, .91);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow:
                0 28px 70px rgba(15, 23, 42, .13),
                inset 0 1px 0 rgba(255, 255, 255, .92);
            text-align: center;
        }

        .access-brand {
            display: grid;
            justify-items: center;
            gap: 11px;
            margin: 0 0 20px;
        }

        .access-logo {
            display: block;
            width: 64px;
            height: 64px;
            overflow: hidden;
            border-radius: 21px;
            background: #072659;
            box-shadow: 0 14px 30px rgba(30, 79, 159, .20);
        }

        .access-logo img {
            display: block;
            width: 100%;
            height: 100%;
            max-width: none;
            object-fit: cover;
            object-position: center;
        }

        .access-brand-name {
            color: var(--login-blue);
            font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", sans-serif;
            font-size: 22px;
            font-style: italic;
            font-weight: 900;
            letter-spacing: .005em;
            line-height: 1;
            transform: skewX(-2deg);
        }

        .access-kicker {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: fit-content;
            min-height: 32px;
            margin: 0 auto 15px;
            padding: 0 13px;
            border: 1px solid #c4d4ea;
            border-radius: 999px;
            background: var(--login-blue-soft);
            color: var(--login-blue);
            font-size: 11px;
            font-weight: 950;
            letter-spacing: .065em;
            line-height: 1;
            text-align: center;
            text-transform: uppercase;
        }

        .access-card h1 {
            margin: 0;
            color: var(--login-text);
            font-size: clamp(34px, 7vw, 48px);
            font-weight: 950;
            letter-spacing: -.055em;
            line-height: 1;
            text-align: center;
        }

        .access-intro {
            width: min(100%, 400px);
            margin: 22px auto 25px;
            color: var(--login-muted);
            font-size: 15px;
            line-height: 1.65;
            text-align: center;
        }

        .alert.error {
            margin: 0 0 18px;
            padding: 12px 14px;
            border: 1px solid #fecaca;
            border-radius: 15px;
            background: #fef2f2;
            color: #991b1b;
            font-size: 13px;
            font-weight: 800;
            line-height: 1.45;
            text-align: center;
        }

        .access-form {
            display: grid;
            gap: 11px;
            text-align: left;
        }

        .access-form input {
            width: 100%;
            height: 52px;
            border: 1px solid var(--login-line);
            border-radius: 16px;
            outline: none;
            background: rgba(255,255,255,.96);
            color: var(--login-text);
            padding: 0 16px;
            font-size: 15px;
            font-weight: 750;
            text-align: center;
            transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
        }

        .access-form input::placeholder {
            color: #94a3b8;
            font-weight: 700;
        }

        .access-form input:focus {
            border-color: var(--login-blue);
            background: #ffffff;
            box-shadow: 0 0 0 4px rgba(30, 79, 159, .11);
        }

        .access-form button {
            width: 100%;
            height: 50px;
            margin-top: 2px;
            border: 1px solid var(--login-blue);
            border-radius: 15px;
            background: var(--login-blue);
            color: #ffffff;
            font-size: 14px;
            font-weight: 950;
            cursor: pointer;
            box-shadow: 0 14px 26px rgba(30, 79, 159, .18);
            transition: transform .16s ease, background .16s ease, border-color .16s ease;
        }

        .access-form button:hover {
            transform: translateY(-1px);
            border-color: var(--login-blue-dark);
            background: var(--login-blue-dark);
        }

        .access-footer {
            width: min(100%, 410px);
            margin: 21px auto 0;
            padding-top: 17px;
            border-top: 1px solid #e2e8f0;
            color: var(--login-muted);
            font-size: 12px;
            line-height: 1.55;
            text-align: center;
        }

        @media (max-width: 600px) {
            body.access-page::before {
                background:
                    linear-gradient(180deg, rgba(255,255,255,.26) 0%, rgba(255,255,255,.08) 62%, rgba(237,244,252,.16) 100%),
                    url('/assets/images/gts-public/gts-login-bg.webp') center center / cover no-repeat;
            }

            .access-shell {
                height: 100svh;
                min-height: 100svh;
                padding: 14px 12px;
            }

            .access-card {
                width: min(100%, 440px);
                padding: 24px 20px 22px;
                border-radius: 24px;
            }

            .access-brand {
                gap: 9px;
                margin-bottom: 17px;
            }

            .access-logo {
                width: 58px;
                height: 58px;
                border-radius: 19px;
            }

            .access-brand-name {
                font-size: 20px;
            }

            .access-kicker {
                min-height: 30px;
                margin-bottom: 13px;
                padding: 0 11px;
                font-size: 10px;
            }

            .access-card h1 {
                font-size: 36px;
            }

            .access-intro {
                margin: 19px auto 21px;
                font-size: 14px;
                line-height: 1.55;
            }

            .access-form input,
            .access-form button {
                height: 49px;
            }

            .access-footer {
                margin-top: 18px;
                padding-top: 15px;
                font-size: 11px;
            }
        }

        @media (max-height: 690px) {
            .access-shell {
                place-items: start center;
            }

            .access-card {
                margin: 10px auto;
                padding-top: 22px;
                padding-bottom: 20px;
            }

            .access-brand {
                margin-bottom: 14px;
            }

            .access-logo {
                width: 52px;
                height: 52px;
                border-radius: 17px;
            }

            .access-kicker {
                margin-bottom: 11px;
            }

            .access-card h1 {
                font-size: 33px;
            }

            .access-intro {
                margin-top: 15px;
                margin-bottom: 17px;
            }

            .access-footer {
                margin-top: 15px;
                padding-top: 13px;
            }
        }

/* Straight GTS Automobile title V8.2 */
.brand-title-v2,
.access-brand-name {
    font-family: "Arial Black", "Segoe UI", Arial, sans-serif !important;
    font-style: normal !important;
    transform: none !important;
    letter-spacing: -0.025em !important;
}
