input[type=text],
input[type=tel],
textarea {
  border-radius: 10px;
  background-color: #F5F6F7;
  padding: 16px;
  outline: none;
  border: none;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
}
input[type=text]::-moz-placeholder, input[type=tel]::-moz-placeholder, textarea::-moz-placeholder {
  color: #727B87;
}
input[type=text]::placeholder,
input[type=tel]::placeholder,
textarea::placeholder {
  color: #727B87;
}

input.input-50 {
  max-width: 348px;
  width: 100%;
}

textarea {
  resize: none;
  width: 100%;
}

input[type=text].error,
input[type=tel].error,
input[type=email].error,
input[type=password].error,
input[type=number].error,
textarea.error {
  outline: 3px solid rgba(255, 0, 0, 0.2784313725) !important;
  transition: outline 0.12s linear;
}

button[type=submit][disabled] {
  opacity: 0.5;
  pointer-events: none;
}

@media screen and (min-width: 1439px) {
  input[type=text],
  input[type=tel],
  textarea {
    padding: 20px 26px;
    font-size: 15px;
    line-height: 1;
  }
}