@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');
html{
    font-size: 16px;
}
.tour-login-page {
    min-height: 100vh;
    margin: 0;
    font-family: 'Sora', sans-serif;
    background:
        radial-gradient(circle at 12% 16%, rgba(62, 165, 217, 0.24), transparent 30%),
        radial-gradient(circle at 84% 8%, rgba(242, 197, 124, 0.24), transparent 32%),
        linear-gradient(165deg, #dcefff 0%, #eaf5ff 45%, #fff5e6 100%);
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
    position: relative;
    overflow: hidden;
}

.tour-login-page .tour-login-shell {
    width: 100%;
    max-width: 460px;
    position: relative;
    z-index: 4;
}

.tour-login-page .tour-bg-overlay {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.tour-login-page .tour-hotel-skyline {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 34vh;
    background:
        linear-gradient(180deg, transparent 0%, rgba(11, 79, 108, 0.08) 46%, rgba(11, 79, 108, 0.22) 100%),
        repeating-linear-gradient(
            to right,
            rgba(15, 23, 42, 0.16) 0 26px,
            rgba(15, 23, 42, 0.28) 26px 56px,
            rgba(15, 23, 42, 0.16) 56px 78px
        );
    clip-path: polygon(0 100%, 0 44%, 6% 44%, 6% 26%, 12% 26%, 12% 52%, 18% 52%, 18% 32%, 26% 32%, 26% 58%, 33% 58%, 33% 20%, 39% 20%, 39% 47%, 48% 47%, 48% 30%, 55% 30%, 55% 60%, 63% 60%, 63% 24%, 69% 24%, 69% 52%, 76% 52%, 76% 34%, 84% 34%, 84% 56%, 92% 56%, 92% 28%, 100% 28%, 100% 100%);
}

.tour-login-page .tour-travel-chip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(11, 79, 108, 0.12);
    color: #0b4f6c;
    border-radius: 999px;
    padding: 0.38rem 0.72rem;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 12px 18px rgba(15, 23, 42, 0.12);
}

.tour-login-page .tour-travel-chip-a {
    top: 10%;
    left: 9%;
}

.tour-login-page .tour-travel-chip-b {
    top: 18%;
    right: 10%;
}

.tour-login-page .tour-travel-chip-c {
    bottom: 40%;
    right: 16%;
}

.tour-login-page .tour-login-card {
    background: rgba(255, 255, 255, 0.93);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    box-shadow: 0 26px 50px rgba(15, 23, 42, 0.2);
    backdrop-filter: blur(8px);
    padding: 1.55rem;
}

.tour-login-page .tour-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1.1rem;
}

.tour-login-page .tour-brand-dot {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    background: var(--brand-ocean, #0b4f6c);
    box-shadow: 0 0 0 5px rgba(62, 165, 217, 0.18);
}

.tour-login-page .tour-brand-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.tour-login-page .tour-login-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    line-height: 1.12;
    margin: 0;
}

.tour-login-page .tour-login-subtitle {
    color: #64748b;
    margin: 0.5rem 0 1.1rem;
    font-size: 1.02rem;
}

.tour-login-page .tour-alerts {
    margin-bottom: 0.5rem;
}

.tour-login-page .tour-login-logo-wrap {
    text-align: center;
    margin: 0.2rem 0 0.9rem;
}

.tour-login-page .tour-login-logo {
    width: 100%;
    max-width: 112px;
    border-radius: 14px;
    background: #fff;
    padding: 0.45rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.12);
}

.tour-login-page .tour-field {
    margin-bottom: 0.95rem;
}

.tour-login-page .tour-label {
    display: inline-block;
    margin-bottom: 0.38rem;
    font-weight: 600;
    color: #334155;
    font-size: 1rem;
}

.tour-login-page .tour-input-wrap {
    position: relative;
}

.tour-login-page .tour-input {
    width: 100%;
    min-height: 50px;
    border: 1px solid rgba(15, 23, 42, 0.16);
    border-radius: 12px;
    padding: 0.64rem 2.6rem 0.64rem 0.85rem;
    background: #fff;
    outline: none;
    font-size: 1.02rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tour-login-page .tour-input:focus {
    border-color: #3ea5d9;
    box-shadow: 0 0 0 4px rgba(62, 165, 217, 0.16);
}

.tour-login-page .tour-icon {
    position: absolute;
    top: 50%;
    right: 0.82rem;
    transform: translateY(-50%);
    color: #0b4f6c;
    font-size: 1rem;
    opacity: 0.85;
}

.tour-login-page .tour-password-toggle {
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.tour-login-page .tour-submit {
    width: 100%;
    min-height: 50px;
    border: 0;
    border-radius: 12px;
    margin-top: 0.45rem;
    background: linear-gradient(135deg, #0b4f6c, #3ea5d9);
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tour-login-page .tour-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(11, 79, 108, 0.24);
}

@media (max-width: 991px) {
    .tour-login-page .tour-login-title {
        font-size: 1.7rem;
    }

    .tour-login-page .tour-travel-chip {
        display: none;
    }

    .tour-login-page .tour-hotel-skyline {
        height: 24vh;
    }
}
