What style rule should you use to display all input elements that have failed the validation test with a red font?
input.invalid { color: red; }
input.not(valid) { color: red; }
input:invalid { color: red; }
input.valid[false] { color: red; }