Hello! I’ve been stuck on this for a while, and (I think -) had already done what the hint states. It says, " You should give the .formrow a padding-right of at least 1px"
Give the .formrow elements top margin, and left and right padding. The other padding values should be 0.
Then, increase the font size for all input elements.
The padding: 0; styling property and value is overriding the padding left and right code above it.
Delete padding: 0; and replace it with padding top and padding bottom values set to 0;
You need to target all the input elements for the font size, not just the ones with a class of .formrow
Remove font-size: 20px; from the .formrow selector, and create new a selector for input and place it there.