.standard-form {
  min-height: 10rem;
  margin: auto;
  max-width: 50%;
  padding: .5rem;
}

.input-text {
  background: transparent;
  border: 0 solid;
  border-bottom: 1px solid rgba(white, .5);
  color: black;
  display: block;
  margin: 1rem;
  padding: .5rem;
  transition: 250ms background ease-in;
  width: calc(100% - 3rem);
  border: thin solid gray;
  border-radius: 10px;
}

input:focus {
  outline: none;
  border: thin solid royalblue;
  border-radius: 10px;
}

textarea:focus {
  outline: none;
  border: thin solid royalblue;
  border-radius: 10px;
}
