I use the same CSS code for both the "text" input and the password, however for one it works and for the other it does not: (see photo)
CSS Code
#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact input[type="password"],
HTML code:
<fieldset>
<input placeholder="Address" type="text" tabindex="1" required autofocus>
</fieldset>
<fieldset>
<input placeholder="password" type="password" tabindex="1" required autofocus>
</fieldset>
<fieldset>
<input placeholder="Confirm password" type="password" tabindex="1" required autofocus>
</fieldset>