.contactForm input, .contactForm textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  font-family: inherit;
}
.contactForm__largeInput {
  height: 120px !important;
  margin-bottom: 10px;
}
.contactForm__row {
  align-items: flex-start;
  justify-content: space-between;
}
@media only screen and (min-width: 600px) {
  .contactForm__row {
    display: flex;
  }
}
.contactForm__row input {
  flex: 0 1 48%;
}
.contactForm__button {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: auto;
  outline: 0;
  font-size: 13px !important;
  line-height: 2em !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-sizing: border-box;
  margin: 0;
  transition: background-color 0.2s cubic-bezier(0.165, 0.84, 0.44, 1), color 0.2s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  color: #fff;
  background-color: #f04c4b;
  border: 1px solid transparent;
  padding: 12px 68px;
  max-width: 26ex;
}
.contactForm__button:hover {
  color: #f04c4b;
  background-color: transparent;
  border: 1px solid #f04c4b;
}
