/* Hubspot Form Styling */

.hbspt-form {
    font-family: var(--bs-font-notoSans);
}
.hbspt-form fieldset {
    margin-bottom: 20px !important;
}
.hbspt-form fieldset.form-columns-1 {
    max-width: calc(50% - 20px);
}
.hbspt-form fieldset.form-columns-2, .hbspt-form fieldset.form-columns-3 {
    max-width: 100%;
    display: flex;
    gap: 40px;
}
.hbspt-form .input {
    width: 100%;
}
.hbspt-form select, .hbspt-form input:not([type="checkbox"]) {
    border-radius: 16px;
    padding: 14px 32px;
    line-height: 34px;
    font-size: 20px;
    border: 0;
    font-weight: 600;
    font-family: var(--bs-font-notoSans);
    width: 100% !important;
    margin: 0;
}
.hbspt-form ul.no-list,
.hbspt-form ul.inputs-list {
    list-style: none;
    margin: 5px 0 0;
    padding: 0;
}
.hbspt-form select.error, .hbspt-form input.error {
    border-color: red;
    border-width: 2px;
    border-style: solid;
}
label.hs-error-msg.hs-main-font-element {
    color: red;
}
.hbspt-form input[type=checkbox] {
    margin-right: 10px;
    width: 13px !important;
    align-self: self-start;
    margin-top: 5px;
}
input.hs-button.primary.large {
	width: 100%;
	text-align: center;
}

@media only screen and (max-width: 1024px) {

    /* Hs Forms */

    .hbspt-form fieldset.form-columns-1 {
        max-width: 100%;
    }
    .hbspt-form fieldset.form-columns-2, .hbspt-form fieldset.form-columns-3 {
        flex-direction: column;
        gap: 20px;
    }
    .hbspt-form fieldset.form-columns-2 .hs-form-field, .hbspt-form fieldset.form-columns-3 .hs-form-field {
        width: 100% !important;
    }
    input.hs-button.primary.large {
        line-height: normal;
        font-size: 20px;
    }

}