You should be able to do this with CSS. For example you could wrap your form with a DIV and set either a class or id for it. Let's pretend you set an id='form-wrap'. Now you can defice CSS for it like this:
#form-wrap input[type=submit] {
your styles
}