/* ============================================================
   Early Ubud SPA - Auth pages (matches landing theme)
   Luxury gold / cream styling, Cormorant Garamond + Jost fonts.
   ============================================================ */

.auth-page {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--promo-height) + var(--nav-height) + 40px) 1rem 4rem;
    overflow: hidden;
    background-color: var(--cream);
}

.auth-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../images/hero.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    z-index: 0;
}

.auth-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 460px;
}

.auth-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(201, 162, 39, 0.35);
    border-radius: 1.25rem;
    padding: 2.5rem 2.25rem;
    backdrop-filter: blur(3px);
}

.auth-card .auth-brand {
    text-align: center;
    margin-bottom: 1.75rem;
}

.auth-card .auth-brand img {
    height: 64px;
    width: auto;
    margin-bottom: 0.75rem;
}

.auth-card .auth-brand h1 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--ink);
    letter-spacing: 0.5px;
}

.auth-card .auth-brand p {
    font-size: 0.95rem;
    color: var(--muted-gold);
    margin: 0;
}

.auth-divider {
    height: 3px;
    width: 70px;
    margin: 1rem auto 1.75rem;
    background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
    border-radius: 2px;
}

.auth-form .form-label {
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ink);
    margin-bottom: 0.4rem;
}

.auth-form .form-control {
    border: 1px solid var(--bs-border-color);
    border-radius: 0.6rem;
    padding: 0.7rem 1rem;
    font-family: var(--font-body);
    color: var(--bs-body-color);
    background: #fff;
    box-shadow: none !important;
}

.auth-form .form-control:focus {
    border-color: var(--gold);
    outline: 2px solid var(--gold);
    outline-offset: 0;
}

.auth-form .form-check-input:checked {
    background-color: var(--gold);
    border-color: var(--gold);
}

/* Eliminate any remaining focus shadow from Bootstrap on auth controls */
.auth-page .form-control:focus,
.auth-page .form-check-input:focus,
.auth-page .btn:focus,
.auth-page .btn:active:focus,
.auth-page .btn-close:focus {
    box-shadow: none !important;
}

.auth-note {
    font-size: 0.88rem;
    color: var(--muted-gold);
    line-height: 1.6;
}

.auth-links {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
}

.auth-links a {
    color: var(--gold-dark);
    font-weight: 600;
    text-decoration: none;
}

.auth-links a:hover {
    color: var(--gold);
    text-decoration: underline;
}

.auth-alert {
    border-radius: 0.6rem;
    font-size: 0.88rem;
}

.auth-alert ul {
    margin: 0;
    padding-left: 1.25rem;
}