:root {
  color: #453a3a;
  background: #fffaf5;
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", sans-serif;
}

* { box-sizing: border-box; }

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

main {
  width: min(100%, 420px);
  padding: 32px 26px;
  background: #fff;
  border: 1px solid #f1e5dc;
  border-radius: 20px;
  box-shadow: 0 12px 36px rgb(78 50 34 / 8%);
}

h1 { margin: 0; font-size: 28px; }
h2 { margin: 28px 0 10px; font-size: 18px; }
.intro { margin: 10px 0 28px; color: #796b65; }
form { display: grid; gap: 18px; }
label { display: grid; gap: 8px; font-size: 14px; font-weight: 600; }
.field-hint { margin: -8px 0 0; color: #796b65; font-size: 13px; line-height: 1.55; }
input, button { font: inherit; }
input { width: 100%; min-height: 46px; padding: 10px 12px; border: 1px solid #d9cbc2; border-radius: 10px; }
button { min-height: 48px; border: 0; border-radius: 10px; background: #72584b; color: #fff; font-weight: 700; }
button:disabled { opacity: .6; }
#status { min-height: 22px; margin: 0; font-size: 14px; line-height: 1.5; }
#status[data-state="error"] { color: #a63f34; }
#status[data-state="success"] { color: #2f7552; }
.service-link { margin: 22px 0 0; font-size: 13px; text-align: center; }
.notice-page { line-height: 1.7; }
.notice-page p { margin: 0 0 14px; }
.notice-page a { color: #72584b; }
