>>1924496Yeah so, if input is hiding stuff you don't want to hide, you use css selectors to mitigate that
if you only want to hide the input element of a certain class, or child of a certain class, you'd write
.classiwantgone input { whatever }
If you wanted to target something specifically of a value, like the submit button
input[value='Submit'] { whatever }