@charset "utf-8";
/* CSS Document */
:root {
  --borderWidth: 2px;
  --height: 24px;
  --width: 12px;
  --borderColor: #78b13f;
}

input.custominput {
  height: 50px;
}

input.custominput::-webkit-input-placeholder { /* WebKit, Blink, Edge */
  color: #434343;


}

input.custominput:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color: #434343;
  opacity: 0.5;
}

input.custominput::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: #434343;
  opacity: 0.5;
}

input.custominput:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #434343;
  opacity: 0.5;
}

input.custominput::-ms-input-placeholder { /* Microsoft Edge */
  color: #434343;
  opacity: 0.5;
}

input.custominput::placeholder { /* Most modern browsers support this now. */
  color: #434343;
  opacity: 0.5;
}

.submit-button {
  width: 100%;
  height: 50px;
  text-align: center;
  color: #fff;
  background: #0079AD;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}

.submit-button:hover {
  background: #fff;
  border: 1px solid #0079AD;
  color: #0079AD;
}

.form-group a {
  color: #0079AD;
  text-decoration: auto;
  font-weight: 500;
}
div#review_recaptcha > div {
  margin: 0 auto;
}

button.pass_requirements {
  border: 0;
  background: transparent;
  color: #0079AD;
  text-decoration: auto;
  font-weight: 500;
}