.spntf {
  --spntf-font: var(
    --sptm-font,
    "yekanbakh",
    "YekanBakh",
    "Yekan Bakh",
    "IRANYekanX",
    "Vazirmatn",
    Tahoma,
    Arial,
    sans-serif
  );
  --spntf-navy: #000f59;
  --spntf-orange: #ff7614;
  --spntf-bg: #f8f8f8;
  --spntf-white: #fff;
  --spntf-text: #111827;
  --spntf-muted: #64748b;
  --spntf-border: #e5e7eb;
  --spntf-soft: #f5f6f8;
  width: 100%;
  max-width: 100%;
  padding: clamp(50px, 7vw, 90px) 20px;
  color: var(--spntf-text);
  background: transparent;
  font-family: var(--spntf-font) !important;
  font-weight: var(--sptm-w-regular, 400);
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  isolation: isolate;
}

.spntf,
.spntf *,
.spntf *::before,
.spntf *::after {
  box-sizing: border-box;
}

.spntf *,
.spntf button,
.spntf input,
.spntf textarea,
.spntf select {
  font-family: var(--spntf-font) !important;
}

.spntf-shell {
  width: min(1040px, 100%);
  margin-inline: auto;
}

.spntf-heading {
  width: min(720px, 100%);
  margin: 0 auto clamp(34px, 5vw, 58px);
  text-align: center;
}

.spntf-eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 13px;
  color: var(--spntf-navy);
  font-size: 12px;
  font-weight: var(--sptm-w-semibold, 600);
}

.spntf-eyebrow i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--spntf-orange);
  box-shadow: 0 0 0 5px rgba(255, 118, 20, 0.1);
}

.spntf-heading h2 {
  margin: 0;
  color: var(--spntf-text);
  font-size: clamp(34px, 4.8vw, 56px);
  font-weight: var(--sptm-w-heading, 800);
  line-height: 1.35;
  letter-spacing: -0.045em;
}

.spntf-heading p {
  max-width: 620px;
  margin: 14px auto 0;
  color: var(--spntf-muted);
  font-size: 14px;
  line-height: 2;
}

.spntf-form {
  position: relative;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(0, 15, 89, 0.075);
  border-radius: 32px;
  background: var(--spntf-white);
  box-shadow:
    0 26px 80px rgba(15, 23, 42, 0.055),
    0 2px 8px rgba(15, 23, 42, 0.025);
}

.spntf-section {
  display: block;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.spntf-section + .spntf-section {
  margin-top: clamp(32px, 5vw, 52px);
  padding-top: clamp(30px, 4vw, 44px);
  border-top: 1px solid color-mix(in srgb, var(--spntf-navy) 7%, transparent);
}

.spntf-section__head {
  width: 100%;
  margin: 0 0 16px;
  padding: 0;
}

.spntf-section__head h3 {
  margin: 0;
  color: var(--spntf-navy);
  font-size: 20px;
  font-weight: var(--sptm-w-heading, 700);
  line-height: 1.55;
}

.spntf-section__head p {
  margin-top: 4px;
  margin-bottom: 0;
  color: var(--spntf-muted);
  font-size: 12px;
  font-weight: var(--sptm-w-regular, 400);
  line-height: 1.8;
}

.spntf-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 21px 18px;
}

.spntf-field {
  position: relative;
  min-width: 0;
}

.spntf-field--wide {
  grid-column: 1 / -1;
}

.spntf-field > label,
.spntf-label {
  min-height: 26px;
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0 2px 7px;
  color: #263248;
  font-size: 12px;
  font-weight: var(--sptm-w-semibold, 600);
  line-height: 1.8;
}

.spntf-required,
.spntf-captcha label b {
  color: var(--spntf-orange);
  font-size: 13px;
}

.spntf-control {
  position: relative;
}

.spntf-control input,
.spntf-control textarea,
.spntf-captcha > input {
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  border: 1px solid var(--spntf-border) !important;
  border-radius: 14px !important;
  outline: 0 !important;
  color: var(--spntf-text) !important;
  background: #fbfbfc !important;
  box-shadow: none !important;
  font-size: 14px !important;
  font-weight: var(--sptm-w-regular, 400) !important;
  transition:
    border-color 200ms ease,
    background-color 200ms ease,
    box-shadow 220ms ease,
    transform 200ms ease;
}

.spntf-control input,
.spntf-captcha > input {
  height: 52px !important;
  padding: 0 15px !important;
}

.spntf-captcha > input {
  height: 56px !important;
}

.spntf-control textarea {
  min-height: 118px;
  resize: vertical;
  padding: 13px 15px !important;
  line-height: 1.9;
}

.spntf-control input:hover,
.spntf-control textarea:hover,
.spntf-captcha > input:hover {
  border-color: color-mix(in srgb, var(--spntf-navy) 17%, var(--spntf-border)) !important;
  background: #fff !important;
}

.spntf-control input:focus,
.spntf-control textarea:focus,
.spntf-captcha > input:focus {
  border-color: color-mix(in srgb, var(--spntf-navy) 54%, transparent) !important;
  background: #fff !important;
  box-shadow: 0 0 0 4px rgba(0, 15, 89, 0.055) !important;
}

.spntf-control--suffix input {
  padding-left: 64px !important;
}

.spntf-control--suffix > span {
  position: absolute;
  top: 50%;
  left: 15px;
  color: var(--spntf-muted);
  font-size: 11px;
  transform: translateY(-50%);
  pointer-events: none;
}

.spntf-error {
  min-height: 0;
  display: block;
  margin: 5px 3px 0;
  color: #bd3c2e;
  font-size: 10px;
  line-height: 1.7;
}

.spntf-field.is-invalid .spntf-control input,
.spntf-field.is-invalid .spntf-control textarea,
.spntf-field.is-invalid .spntf-select__trigger,
.spntf-field.is-invalid .spntf-date__trigger,
.spntf-field.is-invalid .spntf-upload {
  border-color: rgba(196, 54, 37, 0.55) !important;
  box-shadow: 0 0 0 4px rgba(196, 54, 37, 0.045) !important;
}

/* Custom selects */

.spntf-select,
.spntf-date {
  position: relative;
}

.spntf-select__trigger,
.spntf-date__trigger {
  width: 100% !important;
  min-width: 0 !important;
  height: 52px !important;
  min-height: 52px !important;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 !important;
  padding: 0 15px !important;
  border: 1px solid var(--spntf-border) !important;
  border-radius: 14px !important;
  color: var(--spntf-muted) !important;
  background: #fbfbfc !important;
  box-shadow: none !important;
  font-size: 13px !important;
  font-weight: var(--sptm-w-regular, 400) !important;
  text-align: right;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition:
    border-color 200ms ease,
    background-color 200ms ease,
    box-shadow 220ms ease;
}

.spntf-select.has-value .spntf-select__trigger,
.spntf-date.has-value .spntf-date__trigger {
  color: var(--spntf-text) !important;
}

.spntf-select__trigger:hover,
.spntf-date__trigger:hover,
.spntf-select.is-open .spntf-select__trigger,
.spntf-date.is-open .spntf-date__trigger {
  border-color: color-mix(in srgb, var(--spntf-navy) 34%, transparent) !important;
  background: #fff !important;
}

.spntf-select.is-open .spntf-select__trigger,
.spntf-date.is-open .spntf-date__trigger {
  box-shadow: 0 0 0 4px rgba(0, 15, 89, 0.05) !important;
}

.spntf-select__trigger svg,
.spntf-date__trigger svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: var(--spntf-navy);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.spntf-select.is-open .spntf-select__trigger svg {
  transform: rotate(180deg);
}

.spntf-select__menu {
  position: absolute;
  z-index: 80;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  max-height: 260px;
  overflow-y: auto;
  padding: 6px;
  border: 1px solid rgba(0, 15, 89, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
  opacity: 0;
  transform: translateY(-7px) scale(0.985);
  transform-origin: top;
  transition:
    opacity 180ms ease,
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 15, 89, 0.2) transparent;
}

.spntf-select__menu[hidden] {
  display: none;
}

.spntf-select__menu.is-visible {
  opacity: 1;
  transform: none;
}

.spntf-select.is-up .spntf-select__menu {
  top: auto;
  bottom: calc(100% + 8px);
  transform: translateY(7px) scale(0.985);
  transform-origin: bottom;
}

.spntf-select.is-up .spntf-select__menu.is-visible {
  transform: none;
}

.spntf .spntf-select__menu button {
  width: 100% !important;
  min-height: 42px !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 !important;
  padding: 8px 11px !important;
  border: 0 !important;
  border-radius: 10px !important;
  color: #263248 !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: 12px !important;
  text-align: right;
  cursor: pointer;
  appearance: none;
  transition:
    color 160ms ease,
    background-color 160ms ease,
    transform 160ms ease;
}

.spntf .spntf-select__menu button:hover,
.spntf .spntf-select__menu button:focus-visible {
  color: var(--spntf-navy) !important;
  background: rgba(0, 15, 89, 0.055) !important;
  outline: 0;
}

.spntf .spntf-select__menu button[aria-selected="true"] {
  color: var(--spntf-navy) !important;
  background: rgba(0, 15, 89, 0.07) !important;
  font-weight: var(--sptm-w-semibold, 600) !important;
}

.spntf-select__menu button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 160ms ease, transform 180ms ease;
}

.spntf-select__menu button[aria-selected="true"] svg {
  opacity: 1;
  transform: none;
}

/* Choices */

.spntf-choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.spntf-choice {
  position: relative;
  margin: 0;
  cursor: pointer;
}

.spntf-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0.001;
}

.spntf-choice > span {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid var(--spntf-border);
  border-radius: 14px;
  color: #354158;
  background: #fbfbfc;
  font-size: 13px;
  font-weight: var(--sptm-w-medium, 500);
  transition:
    color 200ms ease,
    border-color 200ms ease,
    background-color 200ms ease,
    box-shadow 220ms ease,
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.spntf-choice > span i {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  border: 1.5px solid #b7bfcc;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 4px #fff;
  transition:
    border-color 200ms ease,
    background-color 240ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.spntf-choice:hover > span {
  border-color: rgba(0, 15, 89, 0.18);
  background: #fff;
  transform: translateY(-1px);
}

.spntf-choice input:checked + span {
  border-color: rgba(0, 15, 89, 0.32);
  color: var(--spntf-navy);
  background: rgba(0, 15, 89, 0.045);
  box-shadow: 0 8px 20px rgba(0, 15, 89, 0.055);
}

.spntf-choice input:checked + span i {
  border-color: var(--spntf-navy);
  background: var(--spntf-navy);
  transform: scale(1.06);
}

.spntf-choice input:focus-visible + span {
  outline: 3px solid rgba(0, 15, 89, 0.13);
  outline-offset: 2px;
}

/* Conditional military field */

.spntf-conditional {
  min-width: 0;
  opacity: 1;
  transform: none;
  transition:
    opacity 220ms ease,
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.spntf-conditional.is-leaving {
  opacity: 0;
  transform: translateY(-7px) scale(0.985);
}

.spntf-conditional[hidden] {
  display: none;
}

/* Jalali calendar */

.spntf-calendar {
  position: absolute;
  z-index: 90;
  top: calc(100% + 8px);
  right: 0;
  width: min(330px, calc(100vw - 48px));
  padding: 13px;
  border: 1px solid rgba(0, 15, 89, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top right;
  transition:
    opacity 190ms ease,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.spntf-calendar[hidden] {
  display: none;
}

.spntf-calendar.is-visible {
  opacity: 1;
  transform: none;
}

.spntf-date.is-up .spntf-calendar {
  top: auto;
  bottom: calc(100% + 8px);
  transform: translateY(8px) scale(0.98);
  transform-origin: bottom right;
}

.spntf-date.is-up .spntf-calendar.is-visible {
  transform: none;
}

.spntf-calendar__head {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.spntf-calendar__head > div {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6px;
}

.spntf-calendar__head select {
  height: 34px;
  padding: 0 8px;
  border: 1px solid var(--spntf-border);
  border-radius: 9px;
  outline: 0;
  color: var(--spntf-navy);
  background: var(--spntf-soft);
  font-size: 11px;
  font-weight: var(--sptm-w-semibold, 600);
}

.spntf .spntf-calendar__head > button,
.spntf .spntf-calendar__today {
  display: grid;
  place-items: center;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  color: var(--spntf-navy) !important;
  background: var(--spntf-soft) !important;
  box-shadow: none !important;
  cursor: pointer;
}

.spntf .spntf-calendar__head > button {
  width: 34px !important;
  min-width: 34px !important;
  height: 34px !important;
  min-height: 34px !important;
  border-radius: 10px !important;
}

.spntf-calendar__head button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.spntf-calendar__week,
.spntf-calendar__days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 3px;
}

.spntf-calendar__week {
  margin-bottom: 4px;
  color: #8992a2;
  font-size: 10px;
  text-align: center;
}

.spntf-calendar__week span {
  padding: 5px 0;
}

.spntf-calendar__days::before {
  content: "";
  grid-column: span var(--spntf-calendar-offset, 0);
}

.spntf .spntf-calendar__days button {
  width: 100% !important;
  min-width: 0 !important;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 10px !important;
  color: #354158 !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: 11px !important;
  cursor: pointer;
  transition:
    color 160ms ease,
    background-color 160ms ease,
    transform 180ms ease;
}

.spntf .spntf-calendar__days button:hover {
  color: var(--spntf-navy) !important;
  background: rgba(0, 15, 89, 0.065) !important;
  transform: scale(1.04);
}

.spntf .spntf-calendar__days button.is-selected {
  color: #fff !important;
  background: var(--spntf-navy) !important;
  box-shadow: 0 6px 14px rgba(0, 15, 89, 0.16) !important;
}

.spntf .spntf-calendar__days button.is-today:not(.is-selected) {
  color: var(--spntf-orange) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 118, 20, 0.28) !important;
}

.spntf .spntf-calendar__today {
  width: 100% !important;
  height: 34px !important;
  margin-top: 9px !important;
  border-radius: 10px !important;
  font-size: 11px !important;
  transition: background-color 180ms ease;
}

.spntf .spntf-calendar__today:hover {
  background: rgba(0, 15, 89, 0.08) !important;
}

/* File upload */

.spntf-upload {
  position: relative;
  min-height: 112px !important;
  display: grid !important;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center !important;
  gap: 14px !important;
  margin: 0 !important;
  padding: 18px !important;
  border: 1px dashed rgba(0, 15, 89, 0.2) !important;
  border-radius: 17px !important;
  color: var(--spntf-text) !important;
  background: rgba(0, 15, 89, 0.022) !important;
  cursor: pointer;
  transition:
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 240ms ease,
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.spntf-upload:hover,
.spntf-upload.is-dragging {
  border-color: rgba(0, 15, 89, 0.42) !important;
  background: rgba(0, 15, 89, 0.04) !important;
  box-shadow: 0 12px 28px rgba(0, 15, 89, 0.05) !important;
  transform: translateY(-1px);
}

.spntf-upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0.001;
}

.spntf-upload__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--spntf-navy);
  background: #fff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
}

.spntf-upload__icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.spntf-upload > span:nth-child(3) {
  min-width: 0;
}

.spntf-upload b,
.spntf-upload small {
  display: block;
}

.spntf-upload b {
  overflow: hidden;
  color: #263248;
  font-size: 13px;
  font-weight: var(--sptm-w-semibold, 600);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.spntf-upload small {
  margin-top: 4px;
  color: var(--spntf-muted);
  font-size: 10px;
  font-weight: var(--sptm-w-regular, 400);
  line-height: 1.8;
}

.spntf-upload em {
  padding: 8px 12px;
  border: 1px solid var(--spntf-border);
  border-radius: 10px;
  color: var(--spntf-navy);
  background: #fff;
  font-size: 11px;
  font-style: normal;
  font-weight: var(--sptm-w-semibold, 600);
  white-space: nowrap;
}

/* Footer, captcha, consent */

.spntf-footer {
  margin-top: clamp(34px, 5vw, 52px);
  padding-top: clamp(28px, 4vw, 42px);
  border-top: 1px solid color-mix(in srgb, var(--spntf-navy) 7%, transparent);
}

.spntf-captcha {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
  gap: 12px;
}

.spntf-captcha > div {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px 7px 14px;
  border: 1px solid var(--spntf-border);
  border-radius: 14px;
  background: var(--spntf-soft);
}

.spntf-captcha label {
  margin-left: auto;
  color: #354158;
  font-size: 11px;
  font-weight: var(--sptm-w-semibold, 600);
}

.spntf-captcha__code {
  min-width: 116px;
  padding: 7px 14px;
  border: 1px solid rgba(0, 15, 89, 0.06);
  border-radius: 10px;
  color: var(--spntf-navy);
  background:
    repeating-linear-gradient(135deg, transparent 0 6px, rgba(0, 15, 89, 0.04) 6px 7px),
    #fff;
  font-family: Tahoma, Arial, sans-serif !important;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.13em;
  text-align: center;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9);
  user-select: none;
}

.spntf-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  border: 0 !important;
  white-space: nowrap !important;
}

.spntf .spntf-captcha button {
  width: 34px !important;
  min-width: 34px !important;
  height: 34px !important;
  min-height: 34px !important;
  display: grid;
  place-items: center;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 9px !important;
  color: var(--spntf-navy) !important;
  background: transparent !important;
  box-shadow: none !important;
  cursor: pointer;
}

.spntf-captcha button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.spntf-captcha button.is-loading svg {
  animation: spntfRotate 700ms linear infinite;
}

.spntf-consent {
  display: block;
  margin: 18px 0 0;
  cursor: pointer;
}

.spntf-consent input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0.001;
}

.spntf-consent > span {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--spntf-muted);
  font-size: 11px;
  line-height: 1.9;
}

.spntf-consent i {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  display: grid;
  place-items: center;
  margin-top: 1px;
  border: 1px solid #c8ced8;
  border-radius: 6px;
  color: #fff;
  background: #fff;
  transition:
    border-color 180ms ease,
    background-color 220ms ease,
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.spntf-consent i svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  transform: scale(0.65);
  transition: opacity 180ms ease, transform 220ms ease;
}

.spntf-consent input:checked + span i {
  border-color: var(--spntf-navy);
  background: var(--spntf-navy);
  transform: scale(1.04);
}

.spntf-consent input:checked + span i svg {
  opacity: 1;
  transform: none;
}

.spntf-consent input:focus-visible + span i {
  outline: 3px solid rgba(0, 15, 89, 0.12);
  outline-offset: 2px;
}

.spntf-submit-row {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
}

.spntf-status {
  margin: 0;
  color: var(--spntf-muted);
  font-size: 12px;
  line-height: 1.9;
}

.spntf-status.is-error,
.spntf-consent.is-invalid > span {
  color: #b43b2d;
}

.spntf-status.is-success {
  color: #18794e;
}

.spntf .spntf-submit {
  min-width: 190px !important;
  min-height: 54px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 !important;
  padding: 0 22px !important;
  border: 1px solid var(--spntf-navy) !important;
  border-radius: 15px !important;
  color: #fff !important;
  background: var(--spntf-navy) !important;
  box-shadow: 0 13px 30px rgba(0, 15, 89, 0.16) !important;
  font-size: 13px !important;
  font-weight: var(--sptm-w-bold, 700) !important;
  cursor: pointer;
  appearance: none;
  transition:
    background-color 200ms ease,
    box-shadow 240ms ease,
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.spntf .spntf-submit:hover {
  background: #000b43 !important;
  box-shadow: 0 18px 38px rgba(0, 15, 89, 0.22) !important;
  transform: translateY(-2px);
}

.spntf .spntf-submit:disabled {
  cursor: wait;
  opacity: 0.75;
  transform: none;
}

.spntf-submit__arrow {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 200ms ease;
}

.spntf-submit:hover .spntf-submit__arrow {
  transform: translateX(-3px);
}

.spntf-spinner {
  width: 18px;
  height: 18px;
  display: none;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spntfRotate 700ms linear infinite;
}

.spntf-form.is-submitting .spntf-submit__arrow {
  display: none;
}

.spntf-form.is-submitting .spntf-spinner {
  display: block;
}

.spntf-form.is-complete .spntf-section,
.spntf-form.is-complete .spntf-footer > :not(.spntf-submit-row) {
  opacity: 0.54;
}

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

@keyframes spntfRotate {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 780px) {
  .spntf {
    padding: 48px 12px 64px;
  }

  .spntf-form {
    padding: 23px 17px 27px;
    border-radius: 24px;
  }

  .spntf-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .spntf-field--wide {
    grid-column: auto;
  }

  .spntf-section__head {
    margin-bottom: 14px;
  }

  .spntf-section__head h3 {
    font-size: 18px;
  }

  .spntf-captcha {
    grid-template-columns: 1fr;
  }

  .spntf-submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .spntf .spntf-submit {
    width: 100% !important;
  }

  .spntf-upload {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .spntf-upload em {
    display: none;
  }

  .spntf-calendar {
    right: 0;
    left: auto;
  }
}

@media (max-width: 430px) {
  .spntf-heading h2 {
    font-size: 32px;
  }

  .spntf-heading p {
    font-size: 13px;
  }

  .spntf-form {
    padding-inline: 13px;
    border-radius: 21px;
  }

  .spntf-choices {
    gap: 6px;
  }

  .spntf-choice > span {
    padding-inline: 9px;
    font-size: 12px;
  }

  .spntf-captcha > div {
    gap: 7px;
    padding-inline: 8px;
  }

  .spntf-captcha__code {
    min-width: 100px;
    padding-inline: 10px;
    font-size: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .spntf *,
  .spntf *::before,
  .spntf *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   spntf-overflow-guard (v1.1.1)
   Nothing inside the form may ever be wider than the screen.
   ========================================================================== */

.spntf {
  overflow-x: clip;
  overflow-y: visible;
}

.spntf,
.spntf-shell,
.spntf-heading,
.spntf-form,
.spntf-section,
.spntf-grid,
.spntf-field,
.spntf-footer,
.spntf-submit-row {
  min-width: 0;
  max-width: 100%;
}

.spntf-grid > *,
.spntf-field > *,
.spntf-choices,
.spntf-choice,
.spntf-captcha,
.spntf-captcha > div,
.spntf-upload,
.spntf-upload > * {
  min-width: 0;
  max-width: 100%;
}

.spntf input,
.spntf select,
.spntf textarea,
.spntf .spntf-select,
.spntf .spntf-select__trigger {
  max-width: 100% !important;
  min-width: 0 !important;
}

/* Native date and time inputs refuse to shrink on several mobile browsers. */
.spntf input[type="date"],
.spntf input[type="time"],
.spntf input[type="datetime-local"],
.spntf input[type="month"],
.spntf input[type="number"],
.spntf input[type="tel"],
.spntf input[type="email"],
.spntf input[type="url"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
}

/* Long file names, e-mail addresses and links must wrap, not stretch. */
.spntf p,
.spntf label,
.spntf small,
.spntf em,
.spntf h2,
.spntf h3,
.spntf .spntf-select__value,
.spntf .spntf-select__option {
  overflow-wrap: anywhere;
}

/* Popovers stay inside the viewport. */
.spntf-select__menu,
.spntf-calendar {
  max-width: calc(100vw - 32px);
}

@media (max-width: 430px) {
  .spntf-captcha__code {
    min-width: 0;
    flex: 1 1 auto;
    text-align: center;
  }

  .spntf .spntf-submit {
    min-width: 0 !important;
  }
}
