/** ___  af form  ____________________________________________
 * 
 *   set input, select, label, checkbox, radio style
 * ___________________________________________________________ */
.af-form select, .af-form input {
  border-radius: 0;
  border-color: #D2D2D2;
  transition: all 0.2s ease-in-out;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.af-form select.has-value, .af-form input.has-value {
  background: #E6E6E6;
}

.af-form select.focus, .af-form input.focus {
  border-color: #10ACFF;
  background: #fff;
}

.af-form input {
  padding: 3px 1em;
  font-size: 14px;
}

.af-form input:focus {
  border-color: #00a8ff;
}

.af-form label {
  font-size: 14px;
  color: #333;
  font-weight: normal;
  padding-left: 0;
}
