I wanted to add my final solution. After reading that setting it in the config was "incorrect".
if (model.RememberMe)
{
var ASPCookie = Request.Cookies["ASP.NET_SessionId"];
ASPCookie.Expires = DateTime.Now.AddDays(15);
Response.SetCookie(ASPCookie);
}