/* Benham Form Styles - Added by JH 150721 */

.benham-form .fields-container {
  width: 100%;
  margin: 1% 0;
  border: 0px solid red;
}
.benham-form label {
  text-align: left;
  width: 270px;
  padding: 1.5% 1% 1.4% 0;
  display: inline-block;
  vertical-align: middle;
}

.benham-form input[type="text"], .benham-form input[type="email"], .benham-form input[type="tel"], .benham-form input[type="date"], .benham-form input[type="number"], .benham-form select, .benham-form textarea {
  height: 34px;
  background: #fff;
  border: 1px solid #adadad;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  font: normal 14px Arial;
  color: #666;
  padding: 0px 5px;
  -moz-box-shadow: inset 0px 3px 10px 0px rgba(173, 173, 173, 0.6);
  -webkit-box-shadow: inset 0px 3px 10px 0px rgba(173, 173, 173, 0.6);
  -ms-box-shadow: inset 0px 3px 10px 0px rgba(173, 173, 173, 0.6);
  box-shadow: inset 0px 3px 10px 0px rgba(173, 173, 173, 0.6);
}
/* Multi-select &amp; Textarea */
.benham-form select.benhammulti, .benham-form textarea.benhamta {
  height: auto;
}
.benham-form label.tallfield {
  vertical-align: top;
}
.benham-form input[type="submit"] {
  width: 96px;
  height: 44px;
  box-shadow: none;
  border-radius: 5px;
  background: #006da4;
  color: white;
  font-size: 18px;
  font-weight: bold;
}
/* Benham Form Media Queries */
@media screen and (max-width: 767px) {
  .benham-form label {
    display: block;
  }
  .benham-form input:not([type="radio"]) {
    width: 85%;
  }
}