Following the example from Angular's official documentation, I have come across a road block with .css when using <input mdInput ..../> from Angular Material.
Given .css from the tutorial:
.ng-valid[required], .ng-valid.required {
border-left: 5px solid #42A948; /* green */
}
.ng-invalid:not(form) {
border-left: 5px solid #a94442; /* red */
}
I get the following design in my output:

How do I fix the CSS from "bleed through" the text input?