form-body {
    display: flex;
    width: 100%;
    align-items: flex-start;
    font-size: var(--font-size-small);
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: space-between;
    background: transparent;
    gap: 1rem;
    position: relative;
}

form-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    align-self: stretch;
    width: 20rem;
    flex-grow: 1;
    margin: 0;
    padding: 0 1rem;
}

form-row {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    width: 100%;
}

form-field {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 0.5rem;
    width: 100%;
    min-height: 5rem;
    padding: 0 0.25rem;
}
form-field[hidden] {
    display: none;
}
validatable-field {
    display: flex;
    flex-direction: column;
    width: 100%;
}

split-field {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns:  minmax(9rem, auto);
    width: 100%;
    gap: 0.5rem;
}
split-field[scrollable-x] {
    max-width: 100%;
    overflow-x: auto;
}
split-field .form-row {
    width: 90%;
}

.label-with-info {
    align-items: center;
    gap: 0.5rem;
}
.label-with-info svg {
    font-size: 1.25rem;
    cursor: help;
}

@media screen and (max-width: 1500px) {
    form-row {
        flex-wrap: wrap;
    }
}