/* =========================================================
 * Luxe Minimal - Password Reset (password_reset.css)
 * 忘記密碼頁專用樣式（寄送重設信件），重用 main.css 的 :root tokens 與 .lm-* 共用 class
 * ========================================================= */

/* ---------- Wrap：暖色背景，垂直置中卡片 ---------- */
.password-reset-wrap
{
    background: var(--surface-warm);
    padding: 80px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 64px);
}

@media (min-width: 768px)
{
    .password-reset-wrap
    {
        min-height: calc(100vh - 80px);
        padding: 96px 24px;
    }
}

@media (max-width: 540px)
{
    .password-reset-wrap
    {
        padding: 48px 16px;
    }
}

/* ---------- 卡片 ---------- */
.password-reset-card
{
    width: 100%;
    max-width: 460px;
    background: var(--surface-card);
    border: 1px solid var(--brand-lighter);
    border-radius: 14px;
    padding: 48px 40px;
    box-shadow: 0 12px 40px rgba(180, 149, 144, 0.10);
}

@media (max-width: 540px)
{
    .password-reset-card
    {
        padding: 36px 24px;
        border-radius: 10px;
    }
}

/* ---------- 卡片標題 ---------- */
.password-reset-card-head
{
    text-align: center;
    margin-bottom: 32px;
}

.password-reset-card-head .lm-eyebrow
{
    margin: 0 0 12px 0;
}

.password-reset-card-head h1
{
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 6px 0;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

@media (max-width: 540px)
{
    .password-reset-card-head h1
    {
        font-size: 26px;
    }
}

.password-reset-card-head p
{
    color: var(--ink-muted);
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

/* ---------- Cloudflare Turnstile 容器置中 ---------- */
.password-reset-turnstile
{
    margin: 6px 0 22px;
    display: flex;
    justify-content: center;
}

/* ---------- Actions ---------- */
.password-reset-actions
{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

@media (max-width: 540px)
{
    .password-reset-actions
    {
        flex-direction: column;
    }

    .password-reset-actions .lm-btn
    {
        width: 100%;
    }
}
