/* Shared layout for auth-form cards (login, register, forgot-password,
   reset-password). Centered card on a light-gray full-viewport background;
   tight padding; subtle shadow. Lifted out of forgot-password.php +
   reset-password.php in 2026-05-25's inline-extraction sweep — both files
   carried identical copies. */

body {
    background: #f8f9fa;
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.card-wrap {
    max-width: 420px;
    margin: auto;
}

.card-pad {
    background: #fff;
    padding: 1.75rem 1.75rem 1.5rem;
    border-radius: .6rem;
    box-shadow: 0 .3rem .6rem rgba(0, 0, 0, .06);
}

h1 {
    font-size: 1.25rem;
    color: #0d2f66;
    margin-bottom: .5rem;
}

.small-hint {
    color: #6c757d;
    font-size: .82rem;
    margin-bottom: 1.2rem;
}
