/*
  This is required since there's a div between the form
  element and its children that breaks the following styles
    - display: grid
    - gap: var(--pf-c-form--GridGap)
  from @patternfly and making the fields very close to
  each other
*/
form[data-testid='autoform'] > div {
  display: inherit;
  gap: inherit;
}
