div.form {
  padding: 12px 32px;
}

form {
  width: 600px;
  padding: 10px;
}

form h1,
form h2 {
  margin: 22px 0 22px;
  font-weight: bold;
}

form h1 {
  font-size: 22px;
}

form a {
  margin: 2px 0;
  font-size: 11px;
  font-weight: 400;
}

form .text-center {
  text-align: center;
}

form input.control,
form select.control,
form textarea.control,
form button.control {
  outline: none;
  border: none;
  border-radius: 3px;
  margin: 5px 0;
  padding: 10px 22px;
  width: 100%;
  font-family: inherit;
  font-size: 10px;
  color: #1c1c1c;
  background-color: #f1f1f1;
}

form textarea.control {
  border-radius: 3px;
  height: 120px;
  resize: none;
  -ms-resize: none;
  -ms-overflow-style: none;
  background-position: 12px 10px;
}

form input[type='checkbox'] {
  margin: 0 4px;
  width: auto;
  vertical-align: middle;
  box-shadow: none;
}

form input[type='checkbox']~span {
  font-size: 10px;
}

form button.control {
  padding: 11px 0;
  color: #f1f1f1;
  text-align: center;
  background-color: #19191a;
}

form select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  text-transform: capitalize;
}

/* mobile devices */

@media only screen and (max-width: 600px) {

  /* form */
  div.form {
    width: 100%;
  }

  form {
    width: auto;
  }
}