.fcr-shell {
  color: #080808;
  font-family: Inter, Arial, Helvetica, sans-serif;
  width: 100%;
}

.fcr-form {
  display: grid;
  gap: 17px 14px;
  grid-template-columns: 1fr 1fr;
}

.fcr-field,
.fcr-field-wide,
.fcr-submit {
  min-width: 0;
}

.fcr-field-wide,
.fcr-submit {
  grid-column: 1 / -1;
}

.fcr-field label {
  align-items: baseline;
  display: flex;
  font-size: 11px;
  font-weight: 900;
  justify-content: space-between;
  letter-spacing: 0.08em;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.fcr-field label > span {
  color: #8a270f;
}

.fcr-field label small {
  color: #686868;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.fcr-field input,
.fcr-field textarea {
  appearance: none;
  background: #fff;
  border: 1px solid #aaa;
  border-radius: 0;
  color: #080808;
  font: inherit;
  font-size: 16px;
  line-height: 1.35;
  outline: none;
  padding: 12px 13px;
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease;
  width: 100%;
}

.fcr-field input {
  min-height: 48px;
}

.fcr-field textarea {
  min-height: 108px;
  resize: vertical;
}

.fcr-field input:focus,
.fcr-field textarea:focus {
  border-color: #665500;
  box-shadow: 0 0 0 3px rgb(255 212 0 / 40%);
}

.fcr-field input[aria-invalid="true"],
.fcr-field textarea[aria-invalid="true"] {
  border-color: #a33318;
}

.fcr-help,
.fcr-error,
.fcr-form-message,
.fcr-disclaimer {
  font-size: 10px;
  line-height: 1.4;
  margin: 6px 0 0;
}

.fcr-help {
  color: #666;
}

.fcr-error,
.fcr-form-message-error {
  color: #8d250e;
  font-weight: 750;
}

.fcr-error:empty,
.fcr-form-message:empty {
  display: none;
}

.fcr-form-message {
  margin: 0 0 9px;
}

.fcr-submit button {
  background: #ffd400;
  border: 0;
  color: #080808;
  cursor: pointer;
  font: inherit;
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 950;
  min-height: 58px;
  padding: 14px 18px;
  text-transform: uppercase;
  transition:
    background 150ms ease,
    transform 150ms ease;
  width: 100%;
}

.fcr-submit button:hover,
.fcr-submit button:focus-visible {
  background: #ffe034;
  transform: translateY(-1px);
}

.fcr-submit button:focus-visible {
  outline: 3px solid #080808;
  outline-offset: 3px;
}

.fcr-submit button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.fcr-disclaimer {
  color: #555;
}

.fcr-honeypot {
  height: 1px;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.fcr-success {
  border-left: 6px solid #ffd400;
  padding: 12px 8px 12px 22px;
}

.fcr-success > span {
  align-items: center;
  background: #ffd400;
  border-radius: 50%;
  display: flex;
  font-size: 24px;
  font-weight: 950;
  height: 48px;
  justify-content: center;
  margin-bottom: 22px;
  width: 48px;
}

.fcr-eyebrow {
  color: #675900;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 0 0 13px;
  text-transform: uppercase;
}

.fcr-success h3 {
  font-size: clamp(31px, 3vw, 48px);
  letter-spacing: -0.045em;
  line-height: 0.95;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.fcr-success > p:last-child {
  color: #555;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 720px) {
  .fcr-form {
    display: block;
  }

  .fcr-field,
  .fcr-submit {
    margin-bottom: 17px;
  }
}
