/*----------------------------------------------
 |  form.css |
 |-----------
 |  Form and form related elements (input,select,option,legend...)
 *---------------------------------------------*/
form {
  padding: 0px;
  margin: 0px;
}

input, select, textarea {
 	margin-left: .5em;
  color: #352E2C;
  padding-left: .4em;
  padding-right: .4em;
  border: 1px solid #352E2C;
  background-color: white;
}

textarea {
  width: 95%
}

label.required {
  color: #9D080D;
}

input.required, select.required, textarea.required {
  border: 1px dashed #9D080D;
}

.noborder {
  border: none;
  background-color: transparent;
}

legend {
	font-weight: bold;
  font-size: 1.4em;
	color: #352E2C;
	padding: .2em .5em;
	border: none;
  display: none;
}

fieldset {
	border: none;
  padding: 0px;
  margin: 0px;
}

button {
  font-size: 1em;
  color: #C60003;
  font-weight: bold;
  background-color: #F4F4E0;
  border-bottom: 1px solid #E1E1D8;
  border-right: 1px solid #E1E1D8;
  border-top: 1px solid #FCFCF7;
  border-left: 1px solid #FCFCF7;
  cursor: pointer;
}
