Fixed width input fields for contact form 7

Dear,

is there a way to have a fixed width for the input fields of a contact form 7?
Mine are maximized to the screen resolution. Have a look.

Thanks in advance.

Kind regards
Andy

Hello there,

I hope you are doing well today.

You can use the following CSS code to change the width of the fields by going to Appearance > Customize > Additional CSS and pasting it there.


/*Contact field width*/
input[type="text"], input[type="search"], input[type="email"], input[type="tel"] {
    width: 80%;
}

Best Regards,
Support