Why does my login fail and button font disappear on my site?

Hi, everyone

When I tested the site, I found that the login failed and the button font disappeared. This was also the case on the contact and login pages. There were also many problems with registering an account. I hope to get help. Thanks!

https://f569ff-4a.myshopify.com/account/login

https://f569ff-4a.myshopify.com/pages/contact

You have to set the correct color for the button

Add This css in your Edit Code > Theme.scss.css File

.contact-form .btn--secondary-accent {
    color: #000;
}
.contact-form .btn--secondary-accent:not([disabled]):hover,.contact-form .btn--secondary-accent:focus {
    color: #000;
}
.page-login .btn--secondary:not([disabled]):hover,.page-login .btn--secondary:focus{
    color: #000;
}
.page-login .btn--secondary-accent{
    color: #000;
}
.page-login .btn--secondary-accent:not([disabled]):hover{
    color: #000;
}

Thank you for your reply. I have solved the color problem.This is one step closer to success

This template has brought me a lot of new questions, thank you for your help!