Hi Helga,
There is a form control class for validation error which you can target to make the button border also red. You can add your own class in addition to the class mentioned below to target specific inputs.
.has-error .form-control {
border-bottom: 2px solid red !important;
}
Make sure to give the border a width and also mark that css as important.