
.hs-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
    font-weight: 400;
}

.hs-form-booleancheckbox-display span {
    font-size: 18px;
    font-weight: 400;
}

ul.inputs-list {
    list-style-type: none;
    padding: 0;
    position: relative;
    margin: 0;
}

.hs-form label{
    display:flex;
}

/* Container Label anpassen */
.hs-form-booleancheckbox-display, .hs-form-checkbox {
  position: relative;
  padding-left: 37px;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  font-size: 14px;
}

/* Verstecke die Original-Checkbox */
.hs-form-booleancheckbox-display input[type="checkbox"], .hs-form-checkbox-display input[type="checkbox"]{
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.hs_submit.hs-submit {
    background-color: transparent;
    width: 100%;
}

.hs-fieldtype-intl-phone{
    display: flex;
    width: 100% !important;
}


/* Style für die sichtbare Checkbox */
.hs-form-booleancheckbox-display::before, .hs-form-checkbox-display::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 22px;
  cursor: pointer;
  height: 22px;
  border: 1px solid #fff;
  background-color: #fff;
}

/* Wenn gecheckt – Häkchen anzeigen */
.hs-form-booleancheckbox-display input[type="checkbox"]:checked + span::before, .hs-form-checkbox-display input[type="checkbox"]:checked + span::before  {
  content: "✔";
  position: absolute;
  left: 4px;
  top: 2px;
  font-size: 18px;
  color: black;
}


.hs-form {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 24px;
}

.hs-form input:not([type="checkbox"]),
.hs-form textarea,
.hs-form select {
  width: 100% !important;
  padding: 19px 16px;
  border: 1px solid #fff;
  background-color:transparent !important;
  font-size: 14px;
  box-sizing: border-box;
  border-radius: 8px;
  margin-bottom: 0;
}

.form-columns-2{
  display:flex;
}

.hs-fieldtype-textarea.hs-input {
    min-height: 168px;
}


/* Vorname / Nachname nebeneinander */
.hs-form .field.hs-firstname,
.hs-form .field.hs-lastname {
  width: 48%;
  display: inline-block;
}


.form-columns-2{
    display:flex !important;  
    gap:24px;
}

label.hs-error-msg.hs-main-font-element {
    font-size: 14px;
    color: red;
    position: absolute;
}

.hs-fieldtype-intl-phone select {
    display: none;
}

.hs-fieldtype-intl-phone.hs-input .hs-input {
    margin-bottom: 0;
    width: 100% !important;
}

fieldset{
  width:100%;
  max-width: 100% !important;
}


/* Checkbox */
.hs-form input[type="checkbox"] {
  width: auto;
  display: inline-block;
  margin-right: 10px;
}

/* Datenschutz-Link */
.hs-form .legal-consent-container p {
  font-size: 13px;
}

/* Button */
.hs-form input[type="submit"] {
  display: flex;
    min-width: 200px;
    padding: 14px 32px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    align-self: stretch;
    font-weight: 700;
    border-radius: 999px;
    line-height:28px;
    font-size: 16px;
    border:0;
    color: #222;
    background: #FFF !important;
}


/* Button Hover*/
.hs-form input[type="submit"]:hover {
  display: flex;
    min-width: 200px;
    padding: 14px 32px;
    border:0;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 999px;
    line-height:28px;
    color: #fff !important;
    background: #222 !important;
}

.hs-form textarea, .hs-form select{
      font-size: 16px !important;
}

label.hs-form-booleancheckbox-display {
    padding-left: 32px;
}

form.hs-form fieldset.form-columns-1:nth-last-of-type(-n+3) {
  display: none !important;
}

input.hs-input {
    font-size: 18px !important;
    font-weight: 400;
    font-family: 'subset-Manrope';

}








/* MObile Version */
@media(max-width:992px){
  .form-columns-2 {
      flex-direction: column;
  }
  .hs-form-field {
      width: 100% !important;
  }
}