
.form-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}



.half-length {
  width: 48%;
}

.form-input {
  display: flex;
  flex-direction: column;
}

.form-input label {
  padding: 1em 0;
  font-weight: 500;
}

.form-input input, .form-input select {
  font-size: 1.2rem;
  height: 2em;
  box-shadow: none;
  border: none;
  border-radius: 0.2em;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: var(--white);
}

textarea {
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.form-input textarea {
  font-size: 1.2rem;
  height: 6em;
  border-radius: 0.2em;
  width: 100%;
  box-shadow: none;
  border: none;
}

.form-input textarea:focus {
  color: var(--black);
}


.submit {
  display: inline-block;
  font-size: 1.1rem;
  padding: 0.5em 1em;
  margin-top: 1em;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}


.inline-button {
  display: flex;
  flex-direction: row;
}

.inline-spinner {
  width: 2em;
  height: 2em;
  display: none;
  margin-top: 1em;
}

.small-spinner {
  width: 1.5em;
  height: 1.5em;
  display: none;
}

.embedded-form {
  font-size: 1.25rem;
  width: 100%;
}

.under-text {
  font-size: 1.1rem;
  font-weight: normal;
  margin: 0.5em 0;
}

@media only screen and (max-width: 700px) {

  .form-row {
    flex-direction: column;
  }

  .half-length {
    width: 100%;
  }


}

@media only screen and (max-width: 500px) {

  .embedded-form {
    font-size: 1.2rem;
  }

}

