/* Account website — supplements buddy.css's pencil-sketchbook design system
   with the bits a marketing/form page needs that the pet app didn't. */

body.site { display: flex; justify-content: center; }
.site-wrap { max-width: 480px; width: 100%; margin: 0 auto; padding: 24px 16px 40px; }

.hero { text-align: center; margin-bottom: 18px; }
.hero h1 { font-size: 32px; margin-bottom: 6px; }
.hero p { color: var(--ink-soft); font-size: 16px; }

.field { margin-bottom: 12px; }
.field label { display: block; font-size: 13px; font-weight: 800; color: var(--ink-soft); margin-bottom: 4px; }
.field input, .field select {
  width: 100%; font-family: var(--hand); font-size: 16px; color: var(--ink);
  border: var(--line); border-radius: 10px 13px 9px 12px / 13px 9px 12px 10px;
  padding: 7px 12px;
}

.form-msg { min-height: 20px; font-size: 13px; margin-top: 6px; }
.form-msg.error { color: var(--rose); }
.form-msg.success { color: var(--blue-deep); }

.nav-links { text-align: center; margin-top: 14px; font-size: 14px; }
.nav-links a { color: var(--blue-deep); }

.code-display {
  font-family: var(--hand); font-size: 22px; letter-spacing: .06em;
  text-align: center; padding: 10px; border: var(--line); border-radius: 10px;
  margin: 10px 0; background: #f2f5fc;
}

.steps { padding-left: 20px; }
.steps li { margin-bottom: 6px; }
