/* HubSpot Form Styling to match Bootstrap */
.hbspt-form .hs-form-field {
  margin-bottom: 1rem;
}

.hbspt-form label {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.hbspt-form .hs-input {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.hbspt-form .hs-input:focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, .25);
}

.hbspt-form .hs-input.error {
  border-color: #dc3545;
}

.hbspt-form .hs-error-msgs {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
  padding: 0;
  list-style: none;
}

.hbspt-form .hs-button {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.hbspt-form .hs-button.primary {
  color: #fff;
  background-color: rgb(243, 115, 33);
  border-color: rgb(243, 115, 33);
}

.hbspt-form .hs-button.primary:hover {
  color: #fff;
  background-color: rgb(243, 115, 33);
  border-color: rgb(243, 115, 33);
  filter: brightness(90%);
}

.hbspt-form .hs-button.large {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

.hbspt-form .actions {
  text-align: center;
  margin-top: 1.5rem;
}

.hbspt-form .hs-form-required {
  color: #dc3545;
}