warnings box

This commit is contained in:
2026-04-06 18:56:58 -04:00
parent a1f58e817e
commit a31d21456c
3 changed files with 19 additions and 1 deletions

View File

@@ -146,3 +146,13 @@
border-style: solid;
color: var(--text-main);
}
#password_warnings {
background-color: var(--warning-yellow);
border-radius: 8px;
padding: 20px;
border-color: var(--warning-border-yellow);
border-width: 2px;
border-style: solid;
color: var(--text-main);
}

View File

@@ -16,8 +16,11 @@
--error-red: #ef4444; /* Professional Red */
--error-border-red: #e22d2d;
--warning-yellow: #fef08a;
--warning-border-yellow: #fde047;
--password-strength-weak: var(--error-red);
--password-strength-medium: #efe943;
--password-strength-medium: var(--warning-border-yellow);
--password-strength-strong: #43ef6b;
font-family: "Inter", sans-serif;