

#form, #contact_form {
  position: relative;
  max-width: 500px;
  width: 100%;
  margin: 50px auto 100px auto;
  padding: 10px;
}

input {
  font-family: 'Lato', sans-serif;
  font-size: 0.875em;
  width: 100%;
  min-width: 200px;
  height: 50px;
  padding: 0px 15px 0px 15px;

  
  background: transparent;
  outline: none;
  
  border: solid 1px #bdbdbd;
  
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}

input:hover {
  background: #286090;
  color: #ffffff;
}

textarea {
  width: 100%;
  height: 110px;
  max-height: 110px;
  padding: 15px;
  
  background: transparent;
  outline: none;
  
  font-family: 'Lato', sans-serif;
  font-size: 0.875em;
  
  border: solid 1px #bdbdbd;
  
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}

textarea:hover {
  background: #286090;
  color: #ffffff;
}

#submit {
  
  padding: 0;
  margin: -5px 0px 0px 0px;
  
  font-family: 'Lato', sans-serif;
  font-size: 0.875em;
  
  outline:none;
  cursor: pointer;
  
  border: solid 1px #bdbdbd;
  border-top: none;
}

#submit:hover {
  color: #e2dedb;
}