{% require_css %}
<style>
  {% scope_css %}

  fieldset {
    max-width: 100%!important;
  }
  .ly_section { max-width: 100vw;;
    margin: 0 auto;
  }
  .ly_formOuterCont {
    border-radius: 0.5rem;
    border: 1px solid var(--border, #E2E2E2);
    background: var(--white, #FFF);
    padding: 40px;
    display:flex;
    flex-direction: column;
    gap:16px;
  }
  .form-columns-2 {
    display:flex;
    width: 336px;
    gap: 16px;
    flex-wrap: wrap;

  }
  h2 {
    color: var(--orange, #E86922);
    text-align: center;
  }
  span.hs-form-required {
    visibility: hidden;
  }
  .hs-form-private {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .hs-input {
    display: flex;
    padding: 0.8rem 1.6rem;
    align-items: center;
    gap: 1rem;
    align-self: stretch;
    border-radius: 0.8rem;
    border: 1px solid var(--textgray, #A8A8A8);
    background: var(--white, #FFF);
  }
  .hs-form-field {
    width: 100%;
    float: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .hs-form-booleancheckbox-display {
    display:flex;
    gap: 0.4rem;
  }
  .s-error-msg {
    color: red;
  }
  button{
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
  }
  .action {
    text-align:center;
  }
  .hs-button {
    display: flex;
    padding: 0.8rem 0rem;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    align-self: stretch;
    border-radius: 0.8rem;
    background: var(--orange, #E86922);
    color: #FFF;
    text-align: center;
    /* p_b */
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 700;
    line-height: 180%; /* 2.88rem */
    width: 300px;
    margin: 0 auto;
  }
  textarea {
    width: 100%;
    height: 160px;
  }
  .hs-error-msg {
    color:red;
  }
  @media (max-width: 768px) {
    .hs-button{
      width: 200px;
    }
    .ly_formOuterCont {
      width: 90%;
      margin: 0 auto;
    }
  }
 {% end_scope_css %}
</style>
{% end_require_css %}