.public-form-page {
  min-height: 100vh;
  background:
    radial-gradient(
      circle at 12% 5%,
      rgba(199,244,100,.08),
      transparent 28rem
    ),
    #0b1220;
}

.form-back {
  color: #526174;
  font-size: .8rem;
  font-weight: 800;
}

.public-form-main {
  padding: 75px 0 100px;
}

.form-layout {
  display: grid;
  grid-template-columns:
    minmax(0,.8fr)
    minmax(420px,1fr);
  gap: 80px;
  align-items: start;
}

.form-eyebrow {
  color: #c7f464;
  font-size: .69rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.form-layout h1 {
  max-width: 600px;
  margin: 12px 0 20px;
  color: #fff;
  font-size: clamp(2.5rem,5vw,4.4rem);
  line-height: .98;
  letter-spacing: -.055em;
}

.form-lead {
  max-width: 570px;
  color: #a2b1c2;
  font-size: .98rem;
}

.form-reassurance {
  max-width: 550px;
  margin-top: 35px;
  padding: 20px;
  border-radius: 13px;
  border: 1px solid rgba(199,244,100,.15);
  background: rgba(199,244,100,.04);
}

.form-reassurance strong {
  color: #fff;
  font-size: .82rem;
}

.form-reassurance p {
  margin: 7px 0 0;
  color: #8798ac;
  font-size: .72rem;
}

.public-form-card {
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.1);
  background: #101b2d;
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
}

.sc-public-form {
  display: grid;
  gap: 19px;
}

.sc-form-field {
  display: grid;
  gap: 7px;
}

.sc-form-field > span {
  color: #e8edf4;
  font-size: .73rem;
  font-weight: 800;
}

.sc-form-field input,
.sc-form-field textarea,
.sc-form-field select {
  box-sizing: border-box;
  width: 100%;
  padding: 14px 15px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 9px;
  outline: none;
  background: #0b1423;
  font: inherit;
  font-size: .8rem;
}

.sc-form-field textarea {
  resize: vertical;
}

.sc-form-field input:focus,
.sc-form-field textarea:focus,
.sc-form-field select:focus {
  border-color: rgba(199,244,100,.5);
}

.public-form-submit {
  width: 100%;
  min-height: 56px;
  margin-top: 8px;
}

.public-form-error {
  padding: 13px;
  color: #ffd4d4;
  border: 1px solid rgba(255,100,100,.25);
  border-radius: 9px;
  background: rgba(255,70,70,.07);
  font-size: .72rem;
}

.public-form-success {
  padding: 10px;
}

.public-form-success strong {
  color: #c7f464;
  font-size: 1.1rem;
}

.public-form-success p {
  color: #9aaabd;
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (max-width: 850px) {

  .form-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

}

@media (max-width: 620px) {

  .public-form-main {
    padding: 45px 0 70px;
  }

  .public-form-card {
    padding: 22px;
  }

}
