input, textarea{
  &.form-control{
    border-radius: 0;
    margin-bottom: $sizeMedium;
    padding-top: $sizeMedium;
    padding-bottom: $sizeMedium;
    border: 0;
    &::placeholder{
      font-style: italic;
    }
  }
  &.has-error{
    color: $themePrimary;
    &::placeholder{
      color: $themePrimary;
    }
  }
}

textarea{
  &.form-control{
    padding-top: $sizeSmall;
    resize: none;
    height: 200px;
  }
  &.has-error{
    color: $themePrimary;
    &::placeholder{
      color: $themePrimary;
    }
  }
}