Angular has built-in classes that you can use to style the form based on its status. Take a look here to find out classes you can style!
I'm going to add borders to elements in the form with the class .ng-invalid, like this:
.ng-invalid {
border-left: 3px solid darkred;
}