.hsf-form {
    padding: 1rem;
}
.hsf-form label {
    margin: 1rem 0 0;
    font-weight: bold;
    display: block;
}
.hsf-form .hsf-required-indicator {
    color: #d63638;
    margin-left: 4px;
}
.hsf-form input[type="text"],
.hsf-form input[type="email"],
.hsf-form input[type="tel"],
.hsf-form input[type="number"],
.hsf-form textarea,
.hsf-form select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
    margin-top: 0.5rem;
}
.hsf-form.show-validation input:invalid,
.hsf-form.show-validation textarea:invalid,
.hsf-form.show-validation select:invalid {
    border-color: #d63638;
}
.hsf-form.show-validation input:invalid:focus,
.hsf-form.show-validation textarea:invalid:focus,
.hsf-form.show-validation select:invalid:focus {
    outline-color: #d63638;
    box-shadow: 0 0 0 1px #d63638;
}
.hsf-form select {
    appearance: none;
    background-image: url("icons/caret-down.svg");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}
@supports (-webkit-appearance: none) or (-moz-appearance: none) {
    .hsf-form select {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
}
.hsf-form button[type="submit"] {
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
}
.hsf-status {
    margin-top: 1rem;
    color: green;
    text-align: center;
}
.hsf-status.error {
    color: #d63638;
}
.hsf-field-row {
    margin: 1rem 0;
    padding: 1rem;
    border: 1px solid #DCDCDC;
    border-radius: 6px;
    background: #F9F9F9;
}
.hsf-multi-checkbox-group {
    border: none;
    padding: 0;
    margin: 0.5rem 0 0 0;
}
.hsf-multi-checkbox-group.invalid {
    border: 1px solid #d63638;
    border-radius: 4px;
    padding: 0.5rem;
}
.hsf-checkbox-option {
    display: flex;
    align-items: center;
    margin: 0.5rem 0;
}
.hsf-checkbox-option input[type="checkbox"] {
    margin: 0 0.5rem 0 0;
    width: auto;
}
.hsf-checkbox-option label {
    font-weight: normal;
    cursor: pointer;
    margin: 0;
}
.hsf-checkbox-field {
    display: flex;
    align-items: center;
}
.hsf-checkbox-field input[type="checkbox"] {
    margin: 0 10px 0 0;
    width: auto;
}
.hsf-form .hsf-checkbox-field label {
    font-weight: normal;
    cursor: pointer;
    margin: 0;
}
.hsf-form .hsf-paragraph {
    margin: 5px 0 10px;
    line-height: 1.6;
}
.hsf-form.lines .hsf-field textarea,
.hsf-form.lines .hsf-field input {
    border: 0;
    border-bottom: 2px solid #A9A9A9;
    border-radius: 0;
    box-shadow: none;
    outline: 0;
}