Workshop registration form step 51

hi, doing step 51. and now running into an issue. and i dont understand what it is saying.
so how to get this to work.
marvin.
ps: pasting the error, my styep and my css code.
never heard of this one, saying i need to move the min-height to the input, textarea and select selectors which i have both.
strange.
marvin.
ps: so pasting below.
You should move the min-height property and value to the input, textarea, select selector.

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 {
      min-height: 1em;
                  display: block;
      width: 100%;
            margin-top: 10px;
        margin-bottom: 0px;
        margin-left: 0px;
        margin-right: 0px;
        background-color: #0a0a23;
        border: 1px solid #0a0a23;
        color: #ffffff;
          }

    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;
    }

    select {
      color: white;
      min-height: 1em;
          }

you need to individuate the index, textarea selector, remove the min-height property from that, then find the index, textarea, select selector, and add the same min-height property to that

if you make other changes, the tests will fail

and considering you do not have a index, textarea, select selector, the test will fail

hi, trying to do that, but keeps giving me an error. and dont understand. do i need to put the min height for both input, textarea, select selectors.
dont understand, how to get this to work.
or maybe have to google that.
marvin.
ps: so heres my css code. what am i doing wrong?
please explain.

type or paste code here

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;
    border: 1px solid #0a0a23;
    color: #ffffff;
      }

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;
}

 input, textarea, select {
  color: white;
  min-height: 2em;
      }

hi, you mean input, textarea, select which i have in my css code.
so dont .understand. so please explain and how to get this to work.
sorry, trying my best. and have reset the lesson a couple of times. so maybe have to google that.
marvin.

hi, got it, had to remove the select from the first input selector.
that worked.
sorry, learning and sorry.
marvin.

you should start each step with the code given in that step, so that you start with the correct code