Build a Job Application Form - Build a Job Application Form

Tell us what’s happening:

Why can’t I fix the step 11 when I already set the input and textarea with a focus pseudo-class?

Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Job Application Form</title>
</head>
<body>
    <div class="container">
        <form>
            <label for="name">Full Name:</label>
            <input type="text" id="name" placeholder="Eneter your name" required>

            <label for="email">Email: 
            <input type="email" id="email" placeholder="Enter your email" required>

            <label for="position">Position:</label>
            <select id="position">
                <option value="select" selected>Select a position</option>
                <option value="developer">Developer</option>
                <option value="designer">Designer</option>
                <option value="manager">Manager</option>
            </select>
            <fieldset class="radio-group">
                <legend>Availability:</legend>

                <input id="full-time" value="full-time" name="availability" checked type="radio">
                <label for="full-time">Full-Time</label>

                <input id="part-time" value="part-time" name="availability" type="radio">
                <label for="part-time">Part-Time</label>
            </fieldset>

            <label>Why do you want this job?</label>
            <textarea id="message" placeholder="Write your motivation" cols="100" rows="5"></textarea>

            <button type="submit">Submit Application</button>
        </form>
    </div>
</body>
</html>
/* file: styles.css */
input:focus, textarea:focus {
  border-color: blue;
}

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36

Challenge Information:

Build a Job Application Form - Build a Job Application Form

GitHub Link: freeCodeCamp/curriculum/challenges/english/blocks/lab-job-application-form/66faac4139dbbd5dd632c860.md at main · freeCodeCamp/freeCodeCamp · GitHub

Hi @mikylapelaez03

How is the HTML linked to the CSS?

Happy coding

Thank you so much! I really forgot it.