//
// General forms
//

button, input, select, textarea, fieldset, legend, label, select {
  font: 400 1em/1.35 inherit;
  text-align: left;
  text-transform: none;
  white-space: normal;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
  border-radius: 0;
  -webkit-appearance: none;
}

input, select {
  line-height: normal;
  vertical-align: middle;
  /* Remove webkit focus border */
  &:focus {
    outline: 0;
  }
  /* Fix webkit placeholder vertical position */
  &::-webkit-input-placeholder { 
    line-height: normal;
  }
}

input[type="search"] {
  -webkit-appearance: textfield;
  &::-webkit-search-cancel-button,
  &::-webkit-search-decoration {
    -webkit-appearance: none;
  }
}

button,
input[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

optgroup {
  font-weight: 700;
}

textarea {
  overflow: auto;
}
