.container {
  border: none;
  padding: 0;
  max-width: 100%;
}

.label {
  align-items: center;
  font-size: 18px;
  margin: 0 0 15px;
  line-height: 1;
  font-weight: 600;
  display: flex;
}

.badge {
  font-size: 18px;
  margin-left: 8px;
}

.button {
  cursor: pointer;
  width: 300px;
  max-width: 100%;
  box-shadow: none;
  background: #326496;
  border: 1px #326496 solid;
  border-radius: 100vh;
  padding: 15px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  box-sizing: border-box;
  transition: all 0.25s;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.button .button-submit {
  background-color: #326496;
  margin-top: 0;
}
.button .button-submit:hover {
  background-color: #fff;
  color: #326496;
  transition: all 0.25s;
}

.badge-required {
  color: #FF788C;
  font-size: 12px;
  text-align: center;
  font-weight: bold;
  background-color: #FFF;
  padding: 0;
  line-height: 1;
  border-radius: 0;
  position: inherit;
}

.form-page.form-page-1 {
  padding: 5px;
}

.button-group {
  margin: 0 auto;
  width: 300px;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=date] {
  width: 100%;
  max-width: 100%;
  height: 40px;
  margin: 0;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: none;
  background-color: #fefefe;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-size: 16px;
  box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

textarea {
  width: 100%;
  margin: 0;
  height: 140px;
  padding: 0.5em 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: none;
  background-color: #fefefe;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-size: 16px;
  box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #fff;
}

.form-column {
  margin-bottom: 0;
  padding: 0 0 2em;
  display: block;
}

@media (min-width: 768px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=url],
  input[type=date] {
    height: 60px;
  }
  .form-column {
    display: flex;
  }
  .label {
    width: 40%;
  }
}
.recaptcha-v3-badge {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  text-align: center;
}