﻿.flex-form {
    display: flex;
    flex-wrap: wrap;
    gap: 3em;
}

    .flex-form h2 {
        margin: 0;
        flex-basis: 100%;
    }

    .flex-form .break /*can be used to force items onto a new line*/ {
        flex-basis: 100%;
        height: 0;
    }

    .flex-form .primary-input {
        color: initial;
    }

    .flex-form .checkbox-field {
        display: flex;
        gap: 0.75em;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }

        .flex-form .checkbox-field .primary-input {
            min-width: 1.5em;
            height: 42px;
        }

.form-submit-button {
    margin-top: 3em;
}

.form-field {
    display: flex;
    flex-direction: column;
    flex: 0 1 25%;
    gap: 0.5em;
}

    .form-field.textarea textarea {
        height: 12em;
    }

.read {
    margin: 0;
}


@media (max-width: 750px) {
    .flex-form {
        flex-direction: column;
    }

    .form-label.small-heading.form-label--single-checkbox {
        margin-bottom: 0;
    }

        .form-label.small-heading.form-label--single-checkbox + .read {
            margin-top: 1em;
        }
}
