*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-family: "Roboto Slab", serif;
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
}

.field {
  margin: 1em 0;
}

label {
  display: block;
  margin-top: 1.2em;
  margin-bottom: 0.5em;
  color: #777777;
  font-size: 0.9em !important;
}

input[type=text], input[type=email] {
  font-family: "Roboto Slab", serif;
  color: #777777;	
  width: 100%;
  padding: 0.5em 0.5em;
  font-size: 0.8em;
  border-radius: 3px;
  border: 1px solid #D9D9D9;
}

select {
  font-family: "Roboto Slab", serif;
  color: #777777;	
  width: 12em;
  padding: 0.5em 0.2em;
  font-size: 0.8em;
  border-radius: 3px;
  border: 1px solid #D9D9D9;
}

button {
  font-family: "Roboto Slab", serif;
  display: inline-block;
  border-radius: 3px;
  border: none;
  font-size: 0.9rem;
  padding: 0.5rem 0.8em;
  background: red;
  color: white;
  -webkit-font-smoothing: antialiased;
  font-weight: bold;
  margin: 0;
  width: 100%;
  text-align: center;
}
button:hover, button:focus {opacity: 0.75; cursor: pointer; outline: none;}
button:active {opacity: 1;}
.success {font-size: 1.5em; text-align:center; color: red;}
.error {font-size: 1em; text-align:justify; color: red; margin-top:5px;}
input:focus, select:focus {outline: none; border: 1px solid #a7a7a7; box-shadow: 0 0 5px #a7a7a7;}
#form-messages {font-size:1.7em !important;}