.hotel-site-logo {
    border-radius: 18px;
    height: 3rem !important;
    margin-right: 0.85rem !important;
    max-width: none;
    filter: drop-shadow(0 8px 20px rgba(95, 39, 20, 0.18));
}

.hotel-login-shell {
    --hotel-bg: linear-gradient(145deg, #fbf4ec 0%, #f4e6d6 44%, #ead8cc 100%);
    --hotel-ambient-1: rgba(170, 60, 36, 0.18);
    --hotel-ambient-2: rgba(201, 146, 71, 0.24);
    --hotel-ambient-3: rgba(126, 39, 33, 0.12);
    --hotel-panel-bg: rgba(255, 250, 245, 0.74);
    --hotel-panel-border: rgba(126, 78, 43, 0.14);
    --hotel-panel-shadow: 0 28px 60px rgba(104, 61, 32, 0.16);
    --hotel-title: #241510;
    --hotel-text: #523d37;
    --hotel-soft: #7a655e;
    --hotel-chip-bg: rgba(255, 255, 255, 0.42);
    --hotel-chip-border: rgba(126, 78, 43, 0.14);
    --hotel-field-bg: rgba(255, 255, 255, 0.88);
    --hotel-field-border: rgba(128, 84, 52, 0.2);
    --hotel-field-focus: rgba(168, 52, 36, 0.85);
    --hotel-field-text: #211611;
    --hotel-watermark: rgba(102, 63, 48, 0.06);
    --hotel-topbar: #5e463f;
    --hotel-topbar-hover: #201411;
    --hotel-accent: #9b2f24;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: var(--hotel-bg);
    isolation: isolate;
}

.dark .hotel-login-shell {
    --hotel-bg: linear-gradient(145deg, #120a08 0%, #28120f 46%, #12070f 100%);
    --hotel-ambient-1: rgba(201, 68, 44, 0.26);
    --hotel-ambient-2: rgba(228, 174, 77, 0.16);
    --hotel-ambient-3: rgba(108, 24, 22, 0.22);
    --hotel-panel-bg: rgba(27, 17, 14, 0.72);
    --hotel-panel-border: rgba(255, 232, 214, 0.08);
    --hotel-panel-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
    --hotel-title: #fff3e7;
    --hotel-text: rgba(255, 241, 228, 0.82);
    --hotel-soft: rgba(255, 233, 214, 0.62);
    --hotel-chip-bg: rgba(255, 255, 255, 0.06);
    --hotel-chip-border: rgba(255, 232, 214, 0.08);
    --hotel-field-bg: rgba(17, 10, 10, 0.82);
    --hotel-field-border: rgba(255, 237, 222, 0.14);
    --hotel-field-focus: rgba(234, 160, 81, 0.76);
    --hotel-field-text: #fff7f0;
    --hotel-watermark: rgba(255, 236, 220, 0.05);
    --hotel-topbar: rgba(255, 238, 224, 0.74);
    --hotel-topbar-hover: #fff7ee;
    --hotel-accent: #f0bc77;
}

.hotel-login-shell::before,
.hotel-login-shell::after {
    content: "";
    inset: 0;
    position: absolute;
    pointer-events: none;
}

.hotel-login-shell::before {
    background:
        radial-gradient(circle at 18% 86%, var(--hotel-ambient-1), transparent 34%),
        radial-gradient(circle at 88% 12%, var(--hotel-ambient-2), transparent 28%),
        radial-gradient(circle at 70% 72%, var(--hotel-ambient-3), transparent 30%);
    transform: scale(1.08);
    z-index: -3;
}

.hotel-login-shell::after {
    background: linear-gradient(115deg, rgba(255, 255, 255, 0.2), transparent 30%, transparent 72%, rgba(255, 255, 255, 0.06));
    opacity: 0.9;
    z-index: -2;
}

.hotel-login-backdrop,
.hotel-login-overlay,
.hotel-login-wordmark {
    inset: 0;
    position: absolute;
    pointer-events: none;
}

.hotel-login-backdrop {
    background-position: 82% center;
    background-repeat: no-repeat;
    background-size: min(76vw, 68rem);
    opacity: 0.76;
    z-index: -1;
}

.dark .hotel-login-backdrop {
    opacity: 0.92;
}

.hotel-login-overlay {
    background: linear-gradient(90deg, rgba(251, 244, 236, 0.92) 0%, rgba(251, 244, 236, 0.68) 28%, rgba(251, 244, 236, 0.2) 58%, rgba(251, 244, 236, 0.12) 100%);
}

.dark .hotel-login-overlay {
    background: linear-gradient(90deg, rgba(15, 9, 8, 0.82) 0%, rgba(15, 9, 8, 0.62) 30%, rgba(15, 9, 8, 0.2) 58%, rgba(15, 9, 8, 0.18) 100%);
}

.hotel-login-wordmark span {
    color: var(--hotel-watermark);
    font-size: clamp(4.5rem, 15vw, 13rem);
    font-weight: 700;
    letter-spacing: 0.32em;
    line-height: 0.9;
    position: absolute;
    text-transform: uppercase;
    white-space: nowrap;
}

.hotel-login-wordmark span:first-child {
    right: -3%;
    top: 6%;
}

.hotel-login-wordmark span:last-child {
    bottom: 9%;
    left: -2%;
    transform: rotate(-90deg);
    transform-origin: left bottom;
}

.hotel-login-frame {
    align-items: center;
    display: grid;
    gap: clamp(1.5rem, 4vw, 4rem);
    grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
    min-height: 100vh;
    margin: 0 auto;
    max-width: 1380px;
    padding: clamp(5rem, 8vw, 6.5rem) clamp(1.2rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
    position: relative;
    z-index: 1;
}

.hotel-login-topbar {
    align-items: center;
    display: flex;
    gap: 1rem;
    inset: 1.1rem 1.2rem auto 1.2rem;
    justify-content: space-between;
    position: absolute;
    z-index: 2;
}

.hotel-login-return,
.hotel-login-theme > div > a {
    align-items: center;
    color: var(--hotel-topbar);
    display: inline-flex;
    font-weight: 600;
    gap: 0.45rem;
    transition: color 0.18s ease, transform 0.18s ease;
}

.hotel-login-return:hover,
.hotel-login-theme > div > a:hover {
    color: var(--hotel-topbar-hover);
}

.hotel-login-return:hover .material-symbols-outlined {
    transform: translateX(-2px);
}

.hotel-login-theme nav {
    backdrop-filter: blur(18px);
    background: var(--hotel-panel-bg) !important;
    border: 1px solid var(--hotel-panel-border) !important;
    box-shadow: var(--hotel-panel-shadow);
}

.hotel-login-panel {
    align-items: center;
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
}

.hotel-login-panel .sm\:w-96,
.hotel-login-panel .w-full {
    width: 100%;
}

.hotel-login-card {
    backdrop-filter: blur(14px);
    background: var(--hotel-panel-bg);
    border: 1px solid var(--hotel-panel-border);
    border-radius: 30px;
    box-shadow: var(--hotel-panel-shadow);
    padding: clamp(1.35rem, 3vw, 2rem);
    position: relative;
}

.hotel-login-card::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.26), transparent 32%);
    border-radius: inherit;
    content: "";
    inset: 1px;
    position: absolute;
}

.dark .hotel-login-card::before {
    opacity: 0.22;
}

.hotel-login-card > * {
    position: relative;
    z-index: 1;
}

.hotel-login-card-head {
    margin-bottom: 0.9rem;
}

.hotel-login-card-kicker {
    color: var(--hotel-accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    margin: 0 0 0.75rem;
    text-transform: uppercase;
}

.hotel-login-card-title {
    color: var(--hotel-title);
    font-size: clamp(1.75rem, 3vw, 2.2rem);
    font-weight: 800;
    line-height: 1.02;
    margin: 0;
}

.hotel-login-card-copy {
    color: var(--hotel-text);
    font-size: 0.98rem;
    line-height: 1.65;
    margin: 0.8rem 0 0;
}

.hotel-login-role-row,
.hotel-login-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.hotel-login-role-row {
    margin: 0 0 1.35rem;
}

.hotel-login-role-row span,
.hotel-login-meta span {
    backdrop-filter: blur(12px);
    background: var(--hotel-chip-bg);
    border: 1px solid var(--hotel-chip-border);
    border-radius: 999px;
    color: var(--hotel-title);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.62rem 0.9rem;
    text-transform: uppercase;
}

.hotel-login-errors {
    margin-bottom: 1rem;
}

.hotel-login-form {
    margin-top: 0.75rem;
}

.hotel-login-card .group label {
    color: var(--hotel-title) !important;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.hotel-login-card .group input,
.hotel-login-card .group select,
.hotel-login-card .group textarea {
    background: var(--hotel-field-bg) !important;
    border: 1px solid var(--hotel-field-border) !important;
    border-radius: 16px !important;
    box-shadow: none !important;
    color: var(--hotel-field-text) !important;
    min-height: 3.15rem;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.hotel-login-card .group input::placeholder,
.hotel-login-card .group textarea::placeholder {
    color: var(--hotel-soft);
}

.hotel-login-card .group input:focus,
.hotel-login-card .group select:focus,
.hotel-login-card .group textarea:focus {
    border-color: var(--hotel-field-focus) !important;
    box-shadow: 0 0 0 4px rgba(181, 61, 44, 0.16) !important;
    outline: none;
}

.dark .hotel-login-card .group input:focus,
.dark .hotel-login-card .group select:focus,
.dark .hotel-login-card .group textarea:focus {
    box-shadow: 0 0 0 4px rgba(240, 188, 119, 0.18) !important;
}

.hotel-login-card .errors input,
.hotel-login-card .errors select,
.hotel-login-card .errors textarea {
    border-color: rgba(187, 35, 35, 0.7) !important;
}

.hotel-login-submit,
.hotel-login-reset {
    border-radius: 16px !important;
    min-height: 3.25rem;
}

.hotel-login-submit {
    background: linear-gradient(135deg, #b53126, #8e2018) !important;
    border-color: transparent !important;
    box-shadow: 0 16px 28px rgba(128, 31, 24, 0.25);
}

.dark .hotel-login-submit {
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.24);
}

.hotel-login-submit:hover {
    transform: translateY(-1px);
}

.hotel-login-reset {
    background: transparent !important;
    border: 1px solid var(--hotel-field-border) !important;
    color: var(--hotel-title) !important;
}

.hotel-login-reset:hover {
    background: var(--hotel-chip-bg) !important;
}

.hotel-login-hero {
    align-self: center;
    color: var(--hotel-title);
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 46rem;
    padding: clamp(1rem, 3vw, 2rem) 0;
    position: relative;
}

.hotel-login-kicker {
    color: var(--hotel-accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.32em;
    margin: 0 0 1rem;
    text-transform: uppercase;
}

.hotel-login-hero h1 {
    color: inherit;
    font-size: clamp(3rem, 6.4vw, 5.6rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 0.92;
    margin: 0;
    max-width: 9ch;
}

.hotel-login-hero p {
    color: var(--hotel-text);
    font-size: clamp(1rem, 1.7vw, 1.15rem);
    line-height: 1.75;
    margin: 1.2rem 0 0;
    max-width: 34rem;
}

.hotel-login-meta {
    margin-top: 1.6rem;
}

@media (max-width: 1024px) {
    .hotel-login-frame {
        grid-template-columns: 1fr;
        padding-top: 5.5rem;
    }

    .hotel-login-hero {
        max-width: 38rem;
        order: 1;
        padding-top: 0;
    }

    .hotel-login-panel {
        max-width: 30rem;
    }

    .hotel-login-backdrop {
        background-position: center 22%;
        background-size: min(96vw, 58rem);
    }

    .hotel-login-wordmark span:first-child {
        right: -18%;
        top: 10%;
    }

    .hotel-login-wordmark span:last-child {
        bottom: 8%;
        left: -30%;
        transform: rotate(0deg);
    }
}

@media (max-width: 640px) {
    .hotel-login-topbar {
        inset: 0.9rem 1rem auto 1rem;
    }

    .hotel-login-frame {
        gap: 1.35rem;
        padding: 4.6rem 1rem 1.25rem;
    }

    .hotel-login-card {
        border-radius: 24px;
        padding: 1.15rem;
    }

    .hotel-login-card-title {
        font-size: 1.65rem;
    }

    .hotel-login-role-row span,
    .hotel-login-meta span {
        font-size: 0.72rem;
        padding: 0.56rem 0.8rem;
    }

    .hotel-login-hero h1 {
        font-size: clamp(2.35rem, 12vw, 3.4rem);
        max-width: 8ch;
    }

    .hotel-login-hero p {
        max-width: 22rem;
    }

    .hotel-login-backdrop {
        background-position: center 12%;
        background-size: 165% auto;
        opacity: 0.55;
    }

    .dark .hotel-login-backdrop {
        opacity: 0.75;
    }

    .hotel-login-wordmark span:first-child {
        right: -52%;
        top: 12%;
    }

    .hotel-login-wordmark span:last-child {
        display: none;
    }

    .hotel-site-logo {
        height: 2.5rem !important;
    }
}
