FieldSet are great to visually group form fields
<FieldSet>
<SpacedGroup direction="vertical" xs={8}>
<SpacedGroup>
<span>Account Details
</SpacedGroup>
<FormControlLabel label="My Label" control={<TextField fullWidth />} />
<FormControlLabel label="My Label" control={<TextField stretch />} />
<FormControlLabel
label="Enabled Feature"
center
stretch
control={<Switch />}
/>
</SpacedGroup>
</FieldSet>
</Playground>