body {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}

.card {
    width: 100%;
    max-width: 480px;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
}

h1 {
    margin: 0 0 8px;
    font-size: 1.5rem;
}

.subtitle {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 0.95rem;
}

label {
    margin-bottom: 6px;
    font-size: 0.9rem;
    font-weight: 600;
}

input:not([type='checkbox']):not([type='radio']) {
    padding: 10px 12px;
    font-size: 0.95rem;
}

.field {
    margin-bottom: 14px;
}

.inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
}

.checkbox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--muted);
}

.checkbox input {
    width: auto;
    margin: 0;
}

button {
    width: 100%;
    border: 0;
    border-radius: var(--radius);
    padding: 10px 12px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    background: var(--primary);
    cursor: pointer;
}

button:hover {
    background: var(--primary-hover);
}

.status.success {
    background: #def7ec;
    color: #067647;
    border: 1px solid #b7ebd2;
}

.status.error {
    background: #fee4e2;
    color: #b42318;
    border: 1px solid #fcb3ad;
}

a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
}

a:hover {
    text-decoration: underline;
}

.muted-link {
    color: var(--muted);
    font-size: 0.88rem;
}
