form {
  display: inline-block;
}

input[type="text"] {
  line-height: 1.2em;
  font-size: 14pt;
  border:2px solid #CCC; 
  -webkit-border-radius: 5px;
  border-radius: 5px;
  padding:5px; 
}
textarea {
  font-size: 14pt;
  border:2px solid #CCC; 
  -webkit-border-radius: 5px;
  border-radius: 5px;
  padding:5px; 
}
input[type="submit"] {
  font-size: 14pt;
  height: 2em;
  width: 10em;
}

.contact_form {
  overflow: auto;
  text-align: center;
}

.form_panel {
  float: left;
  text-align: left;
}

.form_panel_submit {
  width: 100%;
  text-align: center;
}

/* Tablets landscape and smaller desktop browsers */
@media only screen and (max-width: 1200px) {
  .form_panel {
    float: none;
  }
}

/* Tablets portrait */
@media only screen and (max-width: 960px) {
  input[type="text"] {
    line-height: 1.2em;
    font-size: 10pt;
  }
  textarea {
    font-size: 10pt;
  }
  input[type="submit"] {
    font-size: 10pt;
  }
}

/* Phones */
@media only screen and (max-width: 640px) {

}