How can I move the password icon to the bottom of the page?

Hi,

Does anyone know how to move the password icon on the password page to the bottom of the page?

Can you do it for both the desktop and the mobile layout?

I am using the spotlight theme

Password - GeffDoe

Thank you

In assets, look for a file with name base.css on line 3552 thereabouts you should see a code like this

#shopify-section-main-password-header .modal__toggle-open.password-link {
    position: fixed;
    top: 50%; // CHANGE THIS LINE from top:50% TO bottom:0;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 3;
}