Примерно так (css)?
form input {
//your style rules here
}
Если вам действительно нужно сделать эту динамику, с помощью jQuery вы также можете сделать:
$('form input').css({ 'color' : 'red' });
Или, возможно:
$('form input').addClass('my-input');
css:
input.my-input {
// style rules here.
}