More properties for textInput element

I would like to customize the textInput properties to change the appearance of my custom form. Unfortunately the style property appears to be limited to:
backgroundColor,
borderColor,
borderRadius,
borderWidth,
color,
and
foregroundColor

I’d like to also change the dimensions and text properties. Is this possible via code? if so, how?

You don’t have any chance to get what you want, because the INPUT-Element do not provide any code-options (APIs) for that.

But instead of using the offered input of WIX → you have the following alternatives.
a) generating your own input-text-field by using CUSTOM-ELEMENT.
b) using an html-component (iFrame) where you also can generate and use your own version of INPUT-FIELD.

c) …and may be a very tricky one…
The text-element do provide what you need as html-text-format.
You could place a textelement behind (layering) the input-field.
Set everything inside of INPUT-FIELD to TRANSPARENT and let show everything what was typed into the INPUT-FIELD, inside of the behind layered Text-Field as OUTPUT.

INPUT-FIELD = INPUT
TEXTFIELD = OUTPUT

But this will open a totaly new CODING-CHAPTER for you.

Thank you. I’ll look into the Custom-Element path.