Registration Form - Step 49

hi doing step 49, and now giving me an error, says to put commas between the input, text area, and the select. so did put a background color and now getting the error. i dont understand what it is asking. firs time doing this sort of thing in css.so will paste the error, the step and my css code. can any one help. yes did reset the lesson a couple of times.
so not sure what i am doing wrong.
can any one point me out where i am going wrong and how to get it to pass.
marvin.
ps: pasting below.

You should use a comma separated element selector to select the input and textarea

Preformatted textelements.
https://www.freecodecamp.org/learn/full-stack-developer/workshop-registration-form/step-49

body {
  font-family: Tahoma;
  font-size: 16px;
    width: 100%;
    height: 100vh;
    margin: 0;
      background-color: #1b1b32; 
      color: #f5f6f7;
    }

    h1, p {
      text-align: center;
      margin: 1em auto;
    }
   
    input, textarea, select {
      display: block;
      width: 100%;
            margin-top: 10px;
        margin-bottom: 0px;
        margin-left: 0px;
        margin-right: 0px;
        background-color: #0a0a23;
          }

    form {
      text-align: center;
      margin: 0 auto;
      max-width: 500px;
      min-width: 300px;
      width: 60vw;
    }

    fieldset {
      border: 0;
      margin-top: 3rem;
      margin-bottom: 3rem;
      padding-top: 2rem;
      padding-bottom: 2rem;
      padding-left: 0;
      padding-right: 0;
      border-bottom: 3px solid #3b3b4f;
    }

    fieldset:last-of-type {
      border-bottom: none;
    }

    .inline {
      width: unset;
      margin-top: 0px;
margin-bottom: 0px;
margin-left: 0px;
margin-right: 0.5em;
vertical-align: middle;
    }
type or paste code here

you need a new selector that selects input and textarea, you should not use the selector that selects input textarea and select

hi. got it to work, did not put a border solid color and had to take out the select from the selector. sorry.
now working.
marvin.

you should not have changed the existing selector, this step required adding a new selector. You found an unexpectred solution