/*----------------------------------------------
 |  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: #FAF8F6;
}

textarea {
  width: 95%
}

label.required {
  color: #9D080D;
}

input.required, select.required, textarea.required {
  border: 1px dashed #9D080D;
}

.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;
}


button {
  font-size: 1.0em;
  color: gray;
  font-weight: bold;
  letter-spacing: 0.05em;
  background-color: #FAF8F6;
  border-bottom: 1px solid #a6a6a6;
  border-right: 1px solid #a6a6a6;
  border-top: 1px solid #EEEEEE;
  border-left: 1px solid #EEEEEE;
  cursor: pointer;
}