/*----------------------------------------------
 |  form.css |
 |-----------
 |  Form and form related elements (input,select,option,legend...)
 *---------------------------------------------*/
form {
  padding: 0px;
  margin: 0px;
}

input, select, textarea {
  color: #352E2C;
  border: 1px solid #407187;
  background-color: #fafafa;
}

textarea {
  width: 95%
}

.noborder {
  border: none;
  background-color: transparent;
}

legend {
  padding: 0px;
  margin: 0px;
  color: #790000;
  font-size: 1.4em;
  line-height: 1.45em;
  font-weight: normal;
  letter-spacing: 0.02em;
  padding-bottom: 5px;
}

fieldset {
	border: none;
  padding: 0px;
  margin: 0px;
}


button {
  font-size: 13px;
  color: white;
  height: 24px;
  width: 75px;
  font-weight: bold;
  letter-spacing: 0.05em;
  background-color: #407187;
  border-bottom: 1px solid #a6a6a6;
  border-right: 1px solid #a6a6a6;
  border-top: 1px solid #EEEEEE;
  border-left: 1px solid #EEEEEE;
  cursor: pointer;
}
