How can I change the background on the login and registration page?

I would like to change the white area to black with white text. There is no customization option on these pages and I’m not sure where to update this.

https://suling-furnishings.myshopify.com/

password iayais

Hello @lillylove ,

Here is a general guide that you can follow:

Go to Online Store → Themes → Actions → Edit code

Go to Assets folder → base.css file or theme.css file

You can try to add this example code:

.login-page input[type="email"],
.login-page input[type="password"] {
  background-color: black;
  color: white;
}

This code targets the input fields of type “email” and “password” on the login page and sets the background color to black and the text color to white. You can adjust the color values as needed.

Save and preview

Hope this can help.

Ali Reviews team.

Thank you! The theme I’m using doesn’t have either of those. It has theme.liquid and no base file.