.custom_forms h2, .custom_forms h3 {
  text-align: center;
}
.custom_forms_row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.custom_forms_row p {
  display: none;
}
.custom_forms_accept_text {
  display: block;
  margin: 40px 0 !important;
}
.custom_forms_accept {
  text-align: center;
}
.custom_forms_accept input[type="checkbox"] {
  height: 24px;
  margin: 0;
  vertical-align: top;
}
.custom_forms_third {
  width: 33%;
}
.custom_forms_half {
  width: 48%;
}
.custom_forms_row label {
  display: block;
  margin: 10px 0 0;
}
.custom_forms_row input {
  display: block;
  padding: 10px;
  width: 100%;
}
.custom_forms input[type="submit"] {
  -webkit-appearance: none;
  background: #fff;
  border: 1px solid #000;
  border-radius: 4px;
  color: #000;
  display: block;
  margin: 20px auto 40px;
  padding: 10px 0;
  text-align: center;
  text-transform: uppercase;
  transition: all .2s;
  width: 200px;
}
.custom_forms input[type="submit"]:hover {
  background: #000;
  border: 1px solid #fff;
  color: #fff;
}

@media all and (max-width: 768px) {
  .custom_forms_third, .custom_forms_half {
    width: 100%;
  }
}