Alter the reset password link

Try this

add_filter( 'lostpassword_url', 'lostpass_url_fix');
function lostpass_url_fix( $link ){
    return 'http://example.com';
}

Just replace the example.com with any url you want