How Do I Make Background Image On Password Page Fill The Screen Dawn Theme?

Yeah just change the ‘.gradient’ class to ‘body.gradient.password’ in the css code

body.gradient.password {
    background: var(--gradient-background);
    background-attachment: fixed;
    background-image: url(https://cdn.shopify.com/s/files/1/0548/6742/7399/files/DesertTheme.jpg?v=1710722322) !important;
    background-color: transparent !important;
    background-position: top left !important;
    background-size: 100% 100% !important;
}

@media only screen and (max-width: 989px) {
    body.gradient.password {
        background: var(--gradient-background);
        background-attachment: fixed;
        background-image: url(https://cdn.shopify.com/s/files/1/0548/6742/7399/files/DesertTheme.jpg?v=1710722322) !important;
        background-color: transparent !important;
        background-position: top left !important;
        background-size: 100% 100% !important;
    }
}