@charset "UTF-8";
/* .application-form is .payment-form in job-form.html */
body {
  margin: 0;
  box-sizing: border-box;
  font-size: 1.2em;
  line-height: 1.4em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 1.5rem 0;
  color: #0093b5;
  line-height: 1.3em;
  font-weight: 700;
}

h1,
h2 {
  letter-spacing: 2px;
}

h3,
h4,
h5,
h6 {
  letter-spacing: 1px;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: "lato", helvetica, sans-serif;
}

h1 {
  color: white;
  font-size: 4em;
  letter-spacing: 4px;
}

a {
  color: #0093b5;
  text-decoration: none;
}

button {
  background-color: white;
  border: 0;
}

.blue-h1 {
  color: #05556d;
  text-shadow: 0px 0px 1px #ccc;
}

.blue-background {
  background-color: #0093b5;
  color: white;
}
.blue-background a {
  color: white;
}

.white-background {
  background-color: white;
  color: #0093b5;
}

.centered {
  text-align: center;
}

.centered p {
  text-align: center;
}

p {
  text-align: justify;
}

form {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem auto;
  width: 75%;
  max-width: 150rem;
  padding: 3rem;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.547);
}

.application-page {
  justify-content: center;
  background-color: #0093b5;
  padding: 2rem;
}
.application-page > h1,
.application-page > p {
  max-width: 65%;
  margin: auto;
  text-align: center;
}

.application-form .learn-more-wrapper {
  display: inline;
}
.application-form .learn-more-wrapper button {
  display: inline;
  background-color: white;
  font-size: large;
  color: #0093b5;
  cursor: pointer;
  padding: 0;
  margin: 0 0 0 0.5em;
}
.application-form .learn-more-wrapper button:hover {
  background-color: white;
  color: #16c1f3;
}
.application-form .learn-more-wrapper button:focus-visible {
  padding: 3px;
}
.application-form .learn-more-wrapper .learn-more-title,
.application-form .learn-more-wrapper .toggle-icon {
  color: #0093b5;
  font-size: smaller;
}
.application-form .learn-more-wrapper .learn-more-content {
  margin: 0.5em 0 0 0;
  font-size: large;
  color: black;
  text-align: left; /* override settings p { text-align: justify } */
}
.application-form {
  /* from added CSS: generic button styling inside application-form */
}
.application-form button {
  background-color: #fc7625;
  color: white;
  font-size: large;
  padding: 1rem;
  border-radius: 0.5rem;
  margin: auto;
  display: block;
  cursor: pointer;
}
.application-form button:hover {
  background-color: #16c1f3;
  color: white;
  transition: 0.3s;
}
.application-form > fieldset {
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.559);
  border-radius: 0.5rem;
  width: 100%;
  word-wrap: break-word;
  margin: 0;
}
.application-form > fieldset label,
.application-form > fieldset p,
.application-form > fieldset > #radio-wrapper {
  color: black;
  font-size: large;
}
.application-form > fieldset {
  /* italic helper text in labels (e.g. household form net worth question) */
}
.application-form > fieldset label i {
  color: #0093b5;
  font-weight: bold;
  font-size: large;
}
.application-form > fieldset {
  /* inputs from both sources (deduped into one list)
     use descendant selector so controls work when wrapped in <div> (e.g. long-text form) */
}
.application-form > fieldset input[type="text"],
.application-form > fieldset input[type="email"],
.application-form > fieldset input[type="tel"],
.application-form > fieldset input[type="date"],
.application-form > fieldset input[type="number"],
.application-form > fieldset input[type="url"],
.application-form > fieldset input[type="file"],
.application-form > fieldset textarea,
.application-form > fieldset select {
  padding: 1em;
  margin-bottom: 2em;
  border: 1px solid rgba(0, 0, 0, 0.559);
  border-radius: 6px;
  width: 100%;
  box-sizing: border-box;
}
.application-form > fieldset input[type="file"],
.application-form > fieldset select,
.application-form > fieldset #radio-wrapper > input[type="radio"],
.application-form > fieldset #radio-wrapper > input[type="checkbox"] {
  cursor: pointer;
}
.application-form > fieldset > select {
  appearance: none;
  background-color: transparent;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPg0KICA8cGF0aCBmaWxsPSJncmF5IiBkPSJNMTAsMjMyLjdsNDkwLDUzNC41bDQ5MC01MzQuNUgxMHoiIC8+DQo8L3N2Zz4=);
  background-repeat: no-repeat;
  background-position: right;
  background-size: 15px;
  background-origin: content-box;
}
.application-form > fieldset > #radio-wrapper {
  width: 100%;
  color: rgba(0, 0, 0, 0.851);
}
.application-form > fieldset > #radio-wrapper > label {
  font-size: large;
}
.application-form > fieldset > #radio-wrapper > input[type="radio"] {
  margin: 0;
  cursor: pointer;
}
.application-form > fieldset > #radio-wrapper > input[type="checkbox"] {
  cursor: pointer;
}

legend {
  color: rgba(0, 115, 149, 0.8);
  font-size: 20px;
}

#radio-wrapper {
  width: 100%;
  color: rgba(0, 0, 0, 0.851);
}
#radio-wrapper label {
  color: black;
  margin-bottom: 2em;
}
#radio-wrapper input {
  background-color: #16c1f3;
}

#custom-gender,
#custom-pronouns,
#custom-race-ethnicity {
  display: none;
}

.form-button {
  display: flex;
  margin: auto;
  align-items: center;
  justify-content: space-between;
}

/* ---------- Mobile ---------- */
@media only screen and (min-width: 320px) and (max-width: 599px) {
  .column {
    padding: 0;
  }
  html,
  body {
    overflow-x: hidden;
    width: 100%;
  }
  .application-page {
    padding: 2rem 0;
  }
  .application-page > form {
    width: initial;
    margin-bottom: 2rem;
    padding: 1.5rem;
  }
  .application-page > h1 {
    font-size: 1.5em;
    max-width: fit-content;
  }
  legend {
    font-size: 18px;
  }
  .application-form > fieldset {
    min-width: 95%;
    padding: 1.5rem;
  }
  .application-form > fieldset label,
  .application-form > fieldset p,
  .application-form > fieldset #radio-wrapper > label {
    font-size: smaller;
  }
  .application-form .learn-more-wrapper .learn-more-content {
    font-size: smaller;
  }
  #radio-wrapper > input[type="radio"] {
    margin: 0;
  }
  #radio-wrapper > label {
    font-size: smaller;
  }
  .form-button {
    gap: 0.5em;
    margin: auto;
  }
  button.previous-btn,
  button.continue-to-app-btn,
  button.save-btn {
    font-size: smaller;
  }
}
/* ---------- Tablet ---------- */
@media only screen and (min-width: 600px) and (max-width: 910px) {
  .column {
    padding: 0;
  }
  html,
  body {
    overflow-x: hidden;
    width: 100%;
  }
  .application-page {
    padding: 2rem 0;
  }
  .application-page > form {
    width: initial;
    margin-bottom: 2rem;
  }
  .application-page > h1 {
    font-size: 2em;
    max-width: fit-content;
  }
  legend {
    font-size: 24px;
  }
}
/*
   Form Progress Indicator 
*/
.tt-stepper {
  /* Uses global font from settings.scss; keep for safety if embedded elsewhere */
  font-family: "lato", helvetica, sans-serif;
  max-width: 85%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2%;
  /* Visible progress text (helpful + accessible; especially on mobile) */
}
.tt-stepper__summary {
  margin: 0 0 0.75rem 0;
  color: #05556d;
  font-size: 1rem;
}
.tt-stepper {
  /* Step list (desktop / tablet) */
}
.tt-stepper__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.tt-stepper__item {
  position: relative;
  flex: 1;
  min-width: 0;
  /* Connector line: from right edge of dot to left edge of next dot */
}
.tt-stepper__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 12px; /* vertically centered on 24px dot */
  left: calc(50% + 12px); /* right edge of 24px dot */
  right: calc(-1rem - 50% + 12px); /* extends to left edge of next dot */
  height: 3px;
  background: #ccc;
}
.tt-stepper__item {
  /* Completed step */
}
.tt-stepper__item.is-complete .tt-stepper__dot {
  background: #0093b5;
  border-color: #0093b5;
  color: white;
}
.tt-stepper__item.is-complete::after {
  background: #0093b5;
}
.tt-stepper__item.is-complete .tt-stepper__label {
  color: #05556d;
}
.tt-stepper__item {
  /* Current step */
}
.tt-stepper__item.is-current .tt-stepper__dot {
  background: #fc7625;
  border-color: #fc7625;
  color: white;
}
.tt-stepper__item.is-current .tt-stepper__label {
  color: #05556d;
  font-weight: 700;
}
.tt-stepper {
  /* Use <a> for completed steps, <span> for current/upcoming (or keep them all <a>) */
}
.tt-stepper__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #666;
}
.tt-stepper__link:focus-visible .tt-stepper__dot {
  outline: 3px solid #16c1f3;
  outline-offset: 3px;
}
.tt-stepper__link {
  /* If you render upcoming steps as disabled links */
}
.tt-stepper__link[aria-disabled="true"] {
  cursor: default;
  pointer-events: none;
}
.tt-stepper__dot {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 2px solid #ccc;
  background: white;
  font-weight: 700;
  transition: all 0.3s;
}
.tt-stepper__label {
  font-size: 0.95rem;
  text-align: center;
  line-height: 1.2;
  max-width: 10ch;
  text-overflow: ellipsis;
}

/* ---------------------------------------------------------
     Mobile: hide the dot stepper, show the "Step X of Y" text
     Matches your existing mobile breakpoint (320–599px)
     --------------------------------------------------------- */
@media only screen and (min-width: 320px) and (max-width: 699px) {
  .tt-stepper__list {
    display: none;
  }
  .tt-stepper__summary {
    display: block;
    margin-bottom: 1rem;
  }
}
/* ---------------------------------------------------------
     Screen reader utility 
     --------------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/*# sourceMappingURL=forms.css.map */
