#form__wrapper form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
#form__wrapper form .checkbox__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1lh;
}
#form__wrapper form .form__row {
  display: flex;
  flex-direction: column;
}
#form__wrapper form .form__row.form__row--radio label {
  display: flex;
  align-items: start;
  justify-content: start;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  margin-top: 0.25rem;
  font-weight: 500;
  max-width: max-content;
}
#form__wrapper form .form__row.form__row--radio label input {
  margin: 0;
  flex-grow: 0;
  width: 1rem;
}
#form__wrapper form .form__row label,
#form__wrapper form .form__row .form__label {
  font-size: 0.9rem;
  display: block;
  padding-bottom: 0;
  color: rgb(86, 86, 86);
  font-weight: 600;
}
#form__wrapper form .form__row .form__label {
  color: #002c5a;
  margin-bottom: 0.25rem;
}
#form__wrapper form .form__row input,
#form__wrapper form .form__row textarea,
#form__wrapper form .form__row select {
  width: 100%;
  border: none;
  outline: none;
  background: none;
  border: 1px solid rgba(0, 44, 90, 0.2196078431);
  border-radius: 5px;
  padding: 0.65rem 0.75rem;
  margin-top: 0.205rem;
  font-size: 1rem;
  letter-spacing: 1px;
  line-height: 1;
  color: #002c5a;
  display: block;
  background: white;
}
#form__wrapper form button[type=submit] {
  background-color: #002c5a;
  border: 1px solid #002c5a;
  color: #fff;
  display: inline-block;
  font-family: "Source Serif Pro", serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1rem;
  border-radius: 5px;
  margin-top: auto;
  padding: 15px 40px;
  text-decoration: none;
  text-transform: uppercase;
  max-width: max-content;
  cursor: pointer;
}
#form__wrapper form .form__header {
  margin-top: 1rem;
  padding-bottom: 0.25rem;
  font-weight: 600;
  color: #002c5a;
  border-bottom: 1px solid #002c5a;
  position: relative;
}
#form__wrapper form .subject-section {
  display: flex;
  flex-direction: column;
  background: #f6f6f6;
  padding: 1.15rem;
  border-radius: 5px;
  border: 1px solid #e9e9e9;
}

#form__wrapper form .form__row.form__group {
  display: flex;
  flex-direction: column;
  background: #f6f6f6;
  padding: 1.15rem;
  border-radius: 5px;
  border: 1px solid #e9e9e9;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

@media only screen and (min-width: 768px) {
  #form__wrapper form {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  #form__wrapper .grid__span {
    grid-column: 1/-1;
  }
}