/**
 * Form elements: Inputs, buttons, etc.
 */

form {
}

fieldset {
}

legend {
}


label,
input,
button,
select,
textarea {

}

input,
button,
select,
textarea {
  font-family: $form-font-family; // And only set font-family here for those that need it (note the missing label element)
}

label {
}

.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {


  &:hover {

  }

  &:active {

  }
}

input[type="text"],
input[type="password"],
input[type="email"],
textarea,
select {

  &:focus {

  }
}

input[type="checkbox"] {

}
