The login cookie is only persistent across sessions if you check the "Remember Login" box when you login.
You may be able to adjust the timeout of the cookie from Web.config:
<authentication mode="Forms">
<forms name=".mojochangeme" protection="All" timeout="50000000" path="/" cookieless="UseCookies" />
</authentication>
Hope it helps,
Joe