.forms-section-content-inputs {
    display: flex;
    flex-direction: column;
    align-items: start;

    @media (width >= 80rem), print {
        flex-direction: row;
        gap: 2rem;
    }
}

.forms-section-content-inputs-column {
    display: grid;
    gap: 0.25rem;
    width: 100%;

    @media (width >= 80rem), print {
        width: 50%;
    }
}

.forms-input {
    height: 6.5rem;
}

.checkbox.forms-input {
    flex-direction: row;
    align-items: center;
    justify-content: start;

    & > label {
        padding: 0.5rem;
    }

    @media (width >= 80rem), print {
        justify-content: center;
    }
}

.selectbox.forms-input > .selectbox-options {
    top: 75%;
}
