What needs to be fixed
I tried J4 on Joomla.com and I see that fields aren't responsive : http://artisanduweb.joomla.com/index.php/contact.html?view=contact&id=1

Why this should be fixed
CSS ? Somtehing like :
@media(max-width: 768px){
form:not(.form-no-margin) .control-group .controls {margin-left: 80px;}
}
@media(max-width: 480px){
form:not(.form-no-margin) .control-group .control-label {float: none;}
form:not(.form-no-margin) .control-group .controls {margin: 0;}
}
How would you fix it
Side Effects expected
Ideally the form layouts need to be rewritten using flexbox rather than a set width for the label, floats and left margins.