* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
  margin: 0;
  background: #f6f4ee;
  color: #171713;
  font-family: Arial, Helvetica, sans-serif;
}

.squeeze {
  width: min(620px, calc(100% - 34px));
  margin: 0 auto;
  padding: clamp(58px, 10vh, 110px) 0 40px;
  text-align: center;
}

.mini-brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 30px;
  color: #35342f;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.mini-brand span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffd91a;
  color: #ffd91a;
  position: relative;
}

.mini-brand span::before {
  content: '';
  width: 4px;
  height: 4px;
  position: absolute;
  right: 6px;
  top: 6px;
  border-radius: 50%;
  background: #171713;
}

.mini-brand span::after {
  content: '';
  position: absolute;
  right: -7px;
  top: 9px;
  border: 4px solid transparent;
  border-left: 7px solid #df8720;
}

.kicker {
  margin: 0 0 24px;
  color: #ad312d;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h1 {
  max-width: 610px;
  margin: 0 auto 20px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(40px, 6vw, 56px);
  line-height: 1.02;
  letter-spacing: -1.8px;
}

.subhead {
  max-width: 570px;
  margin: 0 auto 30px;
  color: #3e3d38;
  font-size: 17px;
  line-height: 1.45;
}

.form-card {
  width: min(520px, 100%);
  min-height: 210px;
  margin: 0 auto;
  padding: 28px 36px 18px;
  background: #fff;
  border: 1px solid #d9d5ca;
  box-shadow: 0 3px 10px rgba(34, 31, 25, .06);
  text-align: left;
}

.form-card .af-form-wrapper,
.form-card .af-form,
.form-card .af-body {
  width: 100% !important;
  max-width: none !important;
  background: transparent !important;
}

.form-card .af-header,
.form-card .af-footer { display: none !important; }

.form-card .af-body { padding: 0 !important; }
.form-card .af-element { padding: 6px 0 !important; background: transparent !important; }
.form-card .previewLabel,
.form-card label {
  display: block !important;
  float: none !important;
  width: auto !important;
  margin: 0 0 8px !important;
  color: #393834 !important;
  font: 700 15px Arial, sans-serif !important;
  text-align: left !important;
}
.form-card .af-textWrap { float: none !important; width: 100% !important; }
.form-card input.text,
.form-card input[type='email'] {
  width: 100% !important;
  height: 48px !important;
  padding: 0 12px !important;
  border: 1px solid #c9d0d4 !important;
  border-radius: 2px !important;
  background: #edf1f3 !important;
  color: #171713 !important;
  font: 16px Arial, sans-serif !important;
  outline: none !important;
}
.form-card input.text:focus,
.form-card input[type='email']:focus { border-color: #777 !important; box-shadow: 0 0 0 2px rgba(0,0,0,.06) !important; }
.form-card input.submit,
.form-card input[type='submit'] {
  width: 100% !important;
  min-height: 50px !important;
  margin-top: 7px !important;
  border: 0 !important;
  border-radius: 2px !important;
  background: #333 !important;
  color: #fff !important;
  font: 700 17px Arial, sans-serif !important;
  cursor: pointer !important;
}
.form-card input.submit:hover,
.form-card input[type='submit']:hover { background: #171713 !important; }
.form-card .privacyPolicy p,
.form-card .poweredBy p {
  margin: 7px 0 0 !important;
  color: #565550 !important;
  font: 11px Arial, sans-serif !important;
  text-align: center !important;
}
.form-card .privacyPolicy a,
.form-card .poweredBy a { color: #565550 !important; }

.trust {
  margin: 22px auto 0;
  color: #6d6b64;
  font-size: 11px;
}

.legal {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.legal a {
  color: #8d8a82;
  font-size: 9px;
}

@media (max-width: 600px) {
  .squeeze { padding-top: 42px; }
  .mini-brand { margin-bottom: 24px; }
  .kicker { margin-bottom: 18px; }
  h1 { font-size: 39px; letter-spacing: -1px; }
  .subhead { font-size: 15px; }
  .form-card { padding: 22px 18px 14px; }
  .trust { line-height: 1.6; max-width: 310px; }
}
