:root {
  color: #172025;
  background: #f4f1ea;
  font-family: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

.signup-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 2rem 1rem;
}

.signup-card {
  width: min(100%, 42rem);
  padding: clamp(1.5rem, 5vw, 3.5rem);
  border: 1px solid #c7c0b4;
  border-radius: 0.5rem;
  background: #fffdf8;
  box-shadow: 0 1rem 3rem rgb(23 32 37 / 12%);
}

.eyebrow {
  margin: 0 0 1rem;
  color: #965c22;
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 16ch;
  margin: 0;
  font-size: clamp(2rem, 6vw, 3.5rem);
  line-height: 1.05;
}

.intro,
.privacy,
#email-help {
  color: #495258;
  font-family: Arial, sans-serif;
  line-height: 1.5;
}

.intro {
  margin: 1.25rem 0 2rem;
  font-size: 1.1rem;
}

.notice {
  padding: 1rem;
  border-left: 0.3rem solid #965c22;
  background: #fff2df;
  font-family: Arial, sans-serif;
  line-height: 1.5;
}

.field,
.consent {
  margin-top: 1.25rem;
}

label,
button {
  font-family: Arial, sans-serif;
  font-weight: 700;
}

input[type="email"] {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.75rem;
  border: 1px solid #6d767b;
  border-radius: 0.25rem;
  font: inherit;
}

#email-help,
.privacy {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
}

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  font-size: 0.95rem;
  line-height: 1.45;
}

.consent input {
  margin-top: 0.25rem;
}

.cf-turnstile {
  margin-top: 1.25rem;
}

button {
  width: 100%;
  margin-top: 1.5rem;
  padding: 0.85rem 1rem;
  border: 0;
  border-radius: 0.25rem;
  color: #fff;
  background: #1e5952;
  cursor: pointer;
}

button:hover {
  background: #16443f;
}

:focus-visible {
  outline: 3px solid #d3762c;
  outline-offset: 3px;
}

.field-error {
  color: #982c23;
  font-family: Arial, sans-serif;
}

@media (max-width: 30rem) {
  .signup-page {
    padding: 0;
  }

  .signup-card {
    min-height: 100vh;
    padding: 1.5rem 8px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
}
