Change Password input box style

Hi,

How do I style the password input box to be the same as the username / email address input box?

Thank you

Link

Hi @shahidul,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Shapely Options -> Other

input[type="password"]
{
    background: #f5f5f5;
    border: none;
    width: 100%;
    height: 50px;
    padding-left: 20px;
    font-weight: 500;
    margin-bottom: 24px;
    border-radius: 0;
}

Best Regards,
Movin