html {
  font-size: 14px;
  /* line-height: 19px; */
  line-height: 1.35714;
  letter-spacing: 0;
  font-family: "Helvetica Neue", helvetica, arial sans-serif;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
}

@media only screen and (min-width: 768px) {
  html {
    font-size: 16px;
    /* line-height: 24px; */
    line-height: 1.5;
  }
}

.form {

}

.errors {
  color: red;
}

.form-field {
  padding: 20px 0 10px;
  margin: 0;
}

.field-label {
  position: relative;
  display: block;
  padding: 1px;
}
.field-label-text {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s;
  line-height: 46px;
  transform-origin: left top;
  cursor: text;
}

.form-field.is-active .field-label-text {
  transform: translateY(-50%) scale(0.8);
  cursor: default;
}

.form-field.error {
  color: red;
}

.text {
  border: none;
  border-bottom: solid 1px #000;
  border-radius: 0;
  background: transparent;
  transition: box-shadow 0.3s;
  display: block;
  width: 100%;
  height: 46px;
  -webkit-appearance: none;
}
.form-field.error .text {
  border-color: red;
}
.text:focus {
  outline: none;
  box-shadow: 0 1px 0 0 #000;
}
.form-field.error .text:focus {
  box-shadow: 0 1px 0 0 red;
}

.submit {
  margin: 0;
}
input[type="submit"] {
  background: transparent;
  outline: none;
  border-radius: 3px;
  border: none;
  appearance: none;
  height: 30px;
  line-height: 30px;
  display: inline-block;
  cursor: pointer;
  padding: 0 15px;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  margin-top: 10px;
  font-size: 15px;
  /* line-height: 22px; */
  line-height: 1.46667;
}

/* Colors */
.form {
  /* background-color: #f45a3e; */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
input[type="submit"] {
  background-color: #fff;
  color: #f45a3e;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}
.field-label-text {
  color: #fff;
}
.text {
  border-bottom-color: #fff;
  color: #fff;
}
.text:focus {
  box-shadow: 0 1px 0 0 #fff;
}
