@charset "utf-8";

@mixin formReset() {

  input,
  button,
  textarea,
  select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
  }

  select::-ms-expand {
    display: none;
  }
}
