Execute this command against your MSCRM database (onpremise only)
select us.FullName, max(a.CreatedOn) as LastLoginDate from Audit a
inner join SystemUser us on a.ObjectId = us.SystemUserId
where
a.Operation = 4 and us.IsDisabled = 0
group by us.FullName