/*
 * SPDX-FileCopyrightText: 2022 Johannes Loher
 *
 * SPDX-License-Identifier: MIT
 */

.ds4-form-group {
  clear: both;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 3px 0;
  align-items: center;

  &--start {
    align-items: flex-start;
  }

  & > * {
    flex: 3;
  }

  &__label {
    flex: 2;
    line-height: var(--form-field-height);
  }
}