I am trying to remove the flex property on the last child, I want the button to be below the form fields. Any ideas?
.formbody {
display: flex;
}
<div class="formbody">
<input type="hidden" name="FORM_SUBMIT" value="">
<input type="hidden" name="" value="">
<div class="widget widget-text mandatory">
<label for="ctrl_2" class="mandatory">Postleitzahl<span class="mandatory">*</span></label>
<input type="number" name="plz" id="" class="text mandatory" value="" required="" step="any" min="1000" max="9999">
</div>
<div class="widget widget-text mandatory">
<label for="" class="mandatory">E-Mail<span class="mandatory">*</span></label>
<input type="email" name="email" id="" class="text mandatory" value="" required="">
</div>
<button type="submit" id="" class="submit" name="submit">Weiter</button>
</div>