.form {

  &__field {
    margin-bottom: 15px;

    input {
      font-family: inherit;
      color: $primary-color;

      &[type="text"],
      &[type="email"],
      &[type="number"] {
        background-color: #fff;
        border-radius: 5px;
        display: inline-block;
        border: 2px solid $primary-color;
        font-size: 1.6rem;
        line-height: 3.5rem;
        height: 41px;
        width: 100%;
        padding: 0 10px;
      }

      &::placeholder {
        color: $gray-70;
      }
    }

    select {
      color: $primary-color;
      background-color: #fff;
      border-radius: 5px;
      display: inline-block;
      border: 2px solid $primary-color;
      font-size: 1.6rem;
      line-height: 3.5rem;
      height: 41px;
      width: 100%;
      padding: 0 15px 0 6px;

      &:focus {
        outline: none;
      }

      &::placeholder {
        color: $gray-70;
      }
    }

    &.js-validation-error {
      input, select, .form__button {
        border-color: $invalid-color;
      }
    }

    label {
      color: $primary-color;
    }
  }

  &__button,
  &__button:focus {
    padding: 0 30px;
    font-size: 1.4rem;
    font-weight: 700;
    display: inline-block;
    text-align: center;
    line-height: 4.4rem;
    transition: all .1s linear;
    border: 2px solid $primary-color;
    border-radius: 22px;
    background: #fff;
    color: $primary-color;

    &:hover {
      border-color: $primary-color;
      background-color: $primary-color;
      color: #fff;
    }
  }
}
