.form-page {
  min-height: 100vh;
  background: var(--cream);
}
.form-hero {
  background: var(--navy);
  color: white;
  padding: 76px clamp(24px, 8vw, 120px);
  text-align: center;
}
.form-hero h1 {
  max-width: 900px;
  margin: 18px auto 20px;
}
.form-hero p {
  max-width: 690px;
  margin: auto;
  color: #dfe8f6;
  font-size: 19px;
  line-height: 1.65;
}
.volunteer-wrap {
  max-width: 940px;
  margin: 0 auto;
  padding: 75px 24px 100px;
}
.volunteer-form {
  background: white;
  padding: clamp(28px, 5vw, 58px);
  box-shadow: 0 20px 55px #071d3c18;
  border-top: 8px solid var(--red);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.field.full {
  grid-column: 1 / -1;
}
.field label,
.choice-title {
  color: var(--navy);
  font-weight: 850;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #b9c4d2;
  background: #fbfcfe;
  padding: 14px 15px;
  font: inherit;
  color: var(--ink);
  border-radius: 0;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid #0b4dad26;
  border-color: var(--blue);
}
.checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 22px;
  margin-top: 12px;
}
.checks label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}
.checks input {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
}
.form-submit {
  margin-top: 32px;
}
.bot-field {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}
.privacy-note {
  margin-top: 18px;
  color: #657184;
  font-size: 12px;
  line-height: 1.55;
}
.thank-you {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
  background: var(--navy);
  color: white;
}
.thank-you h1 {
  max-width: 850px;
}
.thank-you p {
  font-size: 19px;
  color: #dfe8f6;
}
@media (max-width: 650px) {
  .form-grid,
  .checks {
    grid-template-columns: 1fr;
  }
  .field.full {
    grid-column: auto;
  }
  .form-hero {
    padding: 58px 22px;
  }
  .volunteer-wrap {
    padding: 45px 18px 75px;
  }
}
