Hello @JewelryNest
You can change your password by using database. You can use
UPDATE admin_user SET `password` = SHA2('NewPassword', 256) WHERE `username`='admin';
this query where 'NewPassword' will be replaced by your desired password.
Please kudos and accept as solution if it works for you