body {
  background: transparent;
}
.form {
  margin: 1rem auto;
  width: 94%;
  max-width: 640px;
  color: #333333;
  line-height: 1.5;
}
.form .form-field {
  margin-bottom: 1rem;
}
.form .form-field.required .field-label:after {
  content: "required";
  display: inline-block;
  background: rgba(255, 0, 0, 0.05);
  padding: 0.3em .5em;
  font-size: 0.8em;
  letter-spacing: 0;
  line-height: 1;
  margin-left: 1em;
  color: #FF0000;
}
.form .field-label {
  display: block;
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: .2em;
  color: #FFFFFF;
}
.form input.text,
.form textarea {
  border: none;
  border-bottom: 1px solid #cccccc;
  font-size: 1.2rem;
  padding: 0.2rem 0.5rem;
  width: 100%;
}
.form input.text:hover,
.form textarea:hover,
.form input.text:focus,
.form textarea:focus {
  background: #f7f7f7;
}
.form textarea {
  height: 5em;
}
.form input[type="submit"] {
  font-size: 1.2rem;
  padding: 0.3em 1em;
  border: 2px solid #ff0000;
  background: #FF0000;
  color: #FFFFFF;
  font-weight: bold;
  letter-spacing: .2em;
}
.form input[type="submit"]:hover,
.form input[type="submit"]:focus {
  background: #FFFFFF;
  color: #FF0000;
}
.form .submit {
  text-align: center;
}
.form .errors,
.form .error-message {
  color: #FF0000;
}
.form .value > span {
  display: inline-block;
  margin-right: 1em;
}
.form .value > span label {
  padding-left: .5em;
  color: #ffffff;
}
.form .value > span:last-child {
  margin-right: 0;
}
