.fp-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
}

.auth-card {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(12, 38, 24, 0.15);
    width: 100%;
    max-width: 420px;
}

.auth-card>h2 {
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.auth-card>p {
    color: var(--muted);
    margin-bottom: 1.5rem;
    font-size: 14px;
}

.field {
    margin-bottom: 1.5rem;
}

.field label {
    display: block;
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 6px;
}

.field input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid #d7e3d4;
    font-size: 14px;
}

.btn.primary.full {
    width: 100%;
    padding: 12px 20px;
    border-radius: 999px;
    background: #0b6a3c;
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
}

.fp-button {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 13px;
}

.fp-button a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}


.auth-msg-btn {
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.auth-msg-btn.authsuccess {
    background: #d4edda;
    color: #155724;
}

.auth-msg-btn.authfail {
    background: #f8d7da;
    color: #721c24;
}