How to edit label_submit styling?

You can target your submit button in css like this. This will look for a input element with type="sunmit" in container id respond. So make sure your container id is respond otherwise change it too.

#respond input[type=submit] {
    /* your styles */
}