Build a Job Application LAB - pseudoclass focus

When I submit to check my code, it gives me this message:

You should add a :focus pseudo-class to the input and textarea elements to change their border color when focused. Use a list selector in the given order.

I have added a focus to my list selector of input and textarea with the color change when focused. I must be missing something or misinterpreting?

Also to note, it works in my preview. When I focus on an input and textarea, the border changes to the color purple as written in my css below.

input, textarea:focus{
  border-color: purple;
}

Nevermind, just realized my mistake. I will leave this here in case someone else makes the same mistake.

Incorrect:

input, textarea:focus{
  border-color: purple;
}

Correct:

input:focus, textarea:focus{
  border-color: purple;
}