Survey Form Text Center Help

I don’t understand why my age text box won’t center.

Please post the link to your codepen so we can look at the code.

This is the link to my codepen: https://codepen.io/Jediadam/pen/xzdmPL

first thing I notice is that your html is not in good form. Here’s an example of the problem:

    <input id='name' placeholder="Enter Your Name"/>
  </label>
  </div>

  <div class="textField2">
    <label for 'email'>Email:
    <input id='email' placeholder="Enter Your Email"

Look at that first input tag and then look down at the second input tag, notice anything missing at the end of the 2nd one?
(check the other one for age too, has the same problem).

make sure your html is in good shape first before adding css…