Redirect to Auth0 login page after password reset

The issue with the link to the auth0 login page (when I add it to Redirect To) is that auth0 generates a new state query parameter every time I trigger “loginWithRedirect” in my local application. Consequently, the link looks different every time. When I add this link - for example:

https://dev-my-id.us.auth0.com/login?state={generated-value}&client={client-id}&protocol=oauth2&scope=openid%20profile%20email&redirect_uri={host}&response_type=code&response_mode=query&nonce={other-generated-value}&auth0Client={query-param}

it doesn’t work properly. It redirects me to the auth0 login page, but I can’t log in (an error is thrown - probably because of dynamic state query).
So, my question is: Is there a way to redirect directly to the auth0 hosted login page instead of my app?