You have this in your stylesheet:
Code:input { border: 1px solid; }
That's what is creating the border around your buttons.
You could take that out and style each type of input individually. For example:
Code:INPUT[type=text] { border: 1px solid #CCCCCC; }



