.form-item:not(:last-child) {
    margin-bottom: 15px;
}

label {
    display: inline-block;
    vertical-align: top;
    margin-bottom: 5px;
}

label.error {
    font-size: 14px;
    line-height: 17px;
    font-weight: 400;
    color: var(--color-red);
    margin-top: 0.25em;
    margin-bottom: 0;
}

.form-control {
    display: block;
    font-family: var(--font-500);
    font-size: 18px;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.75);
    background-color: var(--color-white);
    border: 0;
    border-radius: 10px;
    padding: 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
}

.form-control.error {
    border-color: var(--color-red);
}

textarea {
    resize: initial;
}

.form-select {
    display: block;
    font-family: var(--font-500);
    font-size: 18px;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.75);
    background-color: var(--color-white);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 2.5rem;
    border: 0;
    border-radius: 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    width: 100%;
}

select::-ms-expand {
    display: none;
}

select {
    word-wrap: normal;
}

.webform-confirmation__message {
    color: var(--color-white);
}

.webform-confirmation__back {
    display: none;
}

@media (max-width: 767px) {
    label.error {
        font-size: 12px;
        line-height: 16px;
    }
}