Please upgrade the OutSystemsUI CSS Classes so the when a single property based CSS class is applied to an input element, that is has a has a higher precedence selector than that of the .form <input element> selector. A mixin could be added to the LESS/SAS application used in the generation of the OutSystemsUI CSS.
Example: margin-bottom-* CSS classes are not applied to an input element
HTML
<form>
<textarea data-textarea class='margin-bottom-none' />
</form>
Existing OutSystemsUI CSS
.form .dropdown, .form .search-input, .form input[data-input], .form textarea[data-textarea], .form [data-switch] { margin-bottom: var(--space-m); }
.margin-bottom-none { margin-bottom:var(--space-none);}
Fixed OutSystemsUI CSS options
.form .dropdown, .form .search-input, .form input[data-input], .form textarea[data-textarea], .form [data-switch] { margin-bottom: var(--space-m); }
.form :is( .dropdown, .search-input, input[data-input], textarea[data-textarea], [data-switch]).margin-bottom-none,
.margin-bottom-none { margin-bottom:var(--space-none);}
or
.form .dropdown, .form .search-input, .form input[data-input], .form textarea[data-textarea], .form [data-switch] { margin-bottom: var(--space-m); }
.margin-bottom-none { margin-bottom:var(--space-none) !important;}