/* GRAVITY FORMS OVERRIDES */
.gform_title {
  display: none;
}

.gform_required_legend {
  display: none;
}

.gform-theme--foundation .gform_fields {
  row-gap: 1rem;
}

.gform-theme--foundation .gfield textarea.large {
  min-block-size: 10rem;
}

.gform-theme--framework {

  label.gfield_label.gform-field-label {
    gap: 2px;

    font-family: 'Manrope', sans-serif;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.125em;
    text-transform: uppercase;

    color: var(--gray-dark);
  }

  input:not([type="submit"]),
  textarea,
  select {
    border: 1px solid var(--gray-extra-light);
    border-radius: 0 !important;

    background-color: var(--sky-extra-light);
    box-shadow: none;

    font-size: 1rem;
  }

  input:not([type="submit"]),
  textarea {
    color: var(--black);
  }

  input:not([type="submit"])::placeholder,
  textarea::placeholder {
    color: var(--gray);
  }

  select {
    color: var(--gray);
  }

  select:has(option.gf_placeholder:checked) {
    color: var(--gray);
  }

  select:not(:has(option.gf_placeholder:checked)) {
    color: var(--black);
  }

  .gform_footer.gform-footer input[type="submit"].gform_button.button {
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.875em 1.25em;

    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.075em;
    text-transform: uppercase;

    background-color: var(--navy-dark);
    border: 1px solid var(--navy-dark);
    border-radius: 0;
    box-shadow: none;
    color: #fff;

    transition: all 0.3s ease;
  }

  .gform_footer.gform-footer input[type="submit"].gform_button.button:hover {
    box-shadow:
      inset 0 1.5em 3em -1.5em rgba(0, 0, 0, 0.5),
      0 6px 10px -6px rgba(0, 0, 0, 0.5);
  }
}

.gform_confirmation_message {
  font-size: 1.5rem;
  line-height: 1.375;
  text-align: center;
  color: var(--black);
  font-weight: 600;
  margin: 2rem 0;
}