blur background when changing password

This commit is contained in:
2026-04-06 18:15:07 -04:00
parent d7727e9b0d
commit 0ab1e95690

View File

@@ -43,6 +43,10 @@ button:hover {
background-color: var(--primary-hover);
}
button:focus {
outline: 2px solid var(--primary-accent);
}
input {
padding: 12px;
background-color: var(--bg-input);
@@ -51,6 +55,10 @@ input {
border-radius: 6px;
}
input:focus {
outline: 2px solid var(--primary-accent);
}
input::placeholder {
color: var(--text-muted);
}
@@ -74,8 +82,9 @@ input::placeholder {
height: 100%;
z-index: 9999; /* higher = on top */
background-color: black;
opacity: 10%;
backdrop-filter: blur(4px);
background-color: rgba(0, 0, 0, 0.3);
pointer-events: all;
}
.dialouge_title {