I can setup (for example) black border and white bacground only for all input. That is why both submit buton anr text for entering search text will have the same appeance

The solution is to set in HTML individual class name for each element, somethig like that:
<input type="submit" class="submit"....
<input type="text" class="text"....
and in css use instead of input[type="text"] {... simply input.text {...
So, my problem is in search form

What modification of core files must be done to appent corresponding classname for every elemet of form elements (submit, reset, label, text, textarea, ....)
