/*----------------------------------------------
 |  form.css |
 |-----------
 |  Form and form related elements (input,select,option,legend...)
 *---------------------------------------------*/
form {
  padding: 0px;
  margin: 0px;
}

input, select, textarea {
  border: 1px solid #C3C6C8;
  background-color: #FFFFFF;
  color: #6A503E;
}

input {
  vertical-align: top;
  padding: 3px;
  font-size: 10px;
}

input.login {
  width: 75px;
}

textarea {
  width: 95%
}

.noborder {
  border: none;
  background-color: transparent;
}



button {
  margin: 0px;
  padding: 0px;
  font-size: 1em;
  font-family: Arial, Helvetica, sans-serif;
  padding-bottom: 3px;
  padding-left: 8px;
  padding-right: 8px;
  text-align: center;
  line-height: 1.1em;
  height: 20px;
  color: white;
  font-weight: bold;
  letter-spacing: 0.05em;
  background-color: #2A3885;
  border-bottom: 1px solid #192254;
  border-right: 1px solid #192254;
  border-top: 1px solid #3B4EB6;
  border-left: 1px solid #3B4EB6;
  cursor: pointer;
}

