@media screen and (max-width: 572px) {
  #formWrap {
    width: 95%;
    margin: 1em auto;
  }
  table.formTable th,
  table.formTable td {
    width: auto;
  }
  table.formTable th {
    grid-template-columns: minmax(0, auto);
    justify-content: center;
    align-items: center;
    row-gap: 1em;
  }
  table.formTable th span {
    display: block;
    margin: auto;
  }
  form input[type=text],
  form textarea {
    width: 100%;
    padding: 5px;
    font-size: 110%;
    display: block;
    height: -moz-fit-content;
    height: fit-content;
    align-self: center;
  }
  form input[type=submit],
  form input[type=reset],
  form input[type=button] {
    display: block;
    width: 100%;
    height: 40px;
    margin-bottom: 1em;
  }
  .input {
    margin-bottom: 0;
  }
  .input2 {
    display: inline-block;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 420px) {
  table.formTable tr {
    grid-template-columns: minmax(0, 100%);
  }
  table.formTable th {
    grid-template-columns: repeat(2, minmax(0, auto));
    justify-content: space-between;
    align-items: center;
  }
}/*# sourceMappingURL=form_responsive.css.map */