/* ==========================================================================
   Pemulihan tautan status
   ========================================================================== */

.label {
    margin: 0 0 var(--s-3);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-muted);
}

h1 {
    font-size: clamp(1.5rem, 2.6vw, 2rem);
}

.lead {
    margin-top: var(--s-3);
    font-size: 0.875rem;
    color: var(--ink-muted);
    max-width: 44ch;
}

.form {
    margin-top: var(--s-6);
}

.field {
    margin-bottom: var(--s-5);
}

.field label {
    margin-bottom: var(--s-2);
    font-size: 0.875rem;
    font-weight: 500;
}

.hint {
    margin-top: calc(var(--s-4) * -1 + var(--s-2));
    font-size: 0.875rem;
    color: var(--ink-faint);
}

/* --- Setelah terkirim --- */

.sent {
    padding: var(--s-6);
    color: var(--bg);
    background: var(--green);
    border-radius: var(--r-lg);
}

.sent__top {
    display: flex;
    gap: var(--s-3);
    align-items: center;
}

.sent__mark {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 50%;
}

.sent__mark svg {
    width: 1.125rem;
}

.sent h2 {
    margin: 0;
    font-size: 1.125rem;
}

.sent p {
    margin: var(--s-3) 0 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.82);
    max-width: 44ch;
}

.note {
    margin-top: var(--s-6);
    padding: var(--s-5) var(--s-6);
    background: var(--surface);
    border-radius: var(--r-lg);
}

.note p {
    font-size: 0.875rem;
    color: var(--ink-muted);
    max-width: 48ch;
}

.note p:last-child {
    margin-bottom: 0;
}

.alt {
    margin-top: var(--s-7);
    padding-top: var(--s-5);
    border-top: 1px solid var(--line);
}

.alt p {
    font-size: 0.875rem;
    color: var(--ink-muted);
    max-width: 48ch;
}

.alt a[class] {
    display: inline-flex;
    align-items: center;
    padding: var(--s-3) var(--s-5);
    text-decoration: none;
    border-radius: 999px;
    border: 1px solid var(--line);
    color: var(--ink);
}

@media (max-width: 600px) {
    .form button {
        width: 100%;
    }
}