input, textarea, button {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  cursor: pointer;
  outline: none;
  box-shadow: none;
  transition: none;
}
input.styled, textarea.styled, button.styled {
  padding: .75em 1em;
  box-shadow: 0 0 .45em rgba(0, 0, 0, .2);
}
button.styled, input[type="submit"].styled {
  color: var(--color-white);
  background-color: var(--color-grey);
}
input.styled::placeholder, textarea.styled::placeholder {
  font-weight: 300;
}
