/*----------------------------------------------
 |  form.css |
 |-----------
 |  Form and form related elements (input,select,option,legend...)
 *---------------------------------------------*/
form {
  padding: 0px;
  margin: 0px;
}

input, select, textarea {
  color: black;
  padding-left: .4em;
  padding-right: .4em;
  border: 1px solid #e6e6e6;
  background-color: #fcfcfb;
}

textarea {
  width: 95%
}

.noborder {
  border: none;
  background-color: transparent;
}

fieldset {
	border: none;
  padding: 0px;
  margin: 0px;
}

legend {display:none;}

button {
  border: none;
  cursor: pointer;
  background-color: #014E93;
  background-repeat: no-repeat;
  width: 50px;
  height: 20px;


}

button span {
  width: 50px;
  height: 20px;
  color:#ffde00;
}