/* /book/login — standalone login for existing customers who hit /book with
   no referral journey to bounce through (hub#369). Fonts and tokens come
   from booking.css, loaded alongside this file. */

.auth-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 24px;
}

.auth-card {
    width: 100%;
    max-width: 360px;
    background: #fff;
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 28px 26px 20px;
    text-align: center;
}

.auth-card h1 {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 8px;
}

.auth-subtitle {
    color: var(--subhead);
    font-size: 14px;
    margin-bottom: 22px;
}

.auth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}

.auth-btn + .auth-btn {
    margin-top: 10px;
}

.auth-apple {
    background: var(--btn-dark);
    border-color: var(--btn-dark);
    color: #fff;
}

.auth-btn img {
    width: 18px;
    height: 18px;
}

.auth-example {
    display: inline-block;
    margin-top: 14px;
    color: var(--ink-muted);
    font-size: 13px;
}

.auth-legal {
    margin-top: 18px;
    color: var(--ink-muted);
    font-size: 12px;
    line-height: 1.5;
}

.auth-legal a {
    color: inherit;
}
