password reset
This commit is contained in:
+103
@@ -2095,3 +2095,106 @@ body.auth-layout #signin-btn {
|
||||
.wizard-review-textarea:focus {
|
||||
border-color: var(--accent);
|
||||
}
|
||||
|
||||
/* ─── Password reset section ───────────────────────────────────── */
|
||||
@keyframes resetSlideIn {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translateY(-8px);
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
.reset-pw-wrap {
|
||||
border: 1px solid rgba(0, 245, 255, 0.22);
|
||||
border-left: 3px solid var(--accent);
|
||||
border-radius: var(--radius);
|
||||
background: rgba(0, 245, 255, 0.03);
|
||||
overflow: hidden;
|
||||
animation: resetSlideIn 0.25s cubic-bezier(0.22, 1, 0.36, 1) both;
|
||||
}
|
||||
|
||||
.reset-pw-idle {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 10px;
|
||||
padding: 10px 14px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.reset-pw-hint {
|
||||
font-size: 12px;
|
||||
color: var(--text-muted);
|
||||
letter-spacing: 0.1px;
|
||||
}
|
||||
|
||||
.reset-pw-btn {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
padding: 5px 12px;
|
||||
border: 1px solid var(--accent);
|
||||
border-radius: 6px;
|
||||
background: transparent;
|
||||
color: var(--accent);
|
||||
font-family: inherit;
|
||||
font-size: 12px;
|
||||
font-weight: 500;
|
||||
cursor: pointer;
|
||||
white-space: nowrap;
|
||||
letter-spacing: 0.1px;
|
||||
box-shadow: 0 0 8px rgba(0, 245, 255, 0.2);
|
||||
transition:
|
||||
background 0.15s,
|
||||
box-shadow 0.15s,
|
||||
color 0.15s;
|
||||
}
|
||||
|
||||
.reset-pw-btn:hover {
|
||||
background: rgba(0, 245, 255, 0.08);
|
||||
box-shadow: 0 0 18px rgba(0, 245, 255, 0.45);
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.reset-pw-btn:disabled {
|
||||
opacity: 0.5;
|
||||
cursor: not-allowed;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.reset-pw-sent {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 14px;
|
||||
padding: 13px 14px;
|
||||
animation: resetSlideIn 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
|
||||
}
|
||||
|
||||
.reset-pw-sent > svg {
|
||||
flex-shrink: 0;
|
||||
color: var(--success);
|
||||
filter: drop-shadow(0 0 6px rgba(0, 255, 136, 0.55));
|
||||
}
|
||||
|
||||
.reset-pw-sent-text {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 3px;
|
||||
}
|
||||
|
||||
.reset-pw-sent-title {
|
||||
font-size: 13px;
|
||||
font-weight: 600;
|
||||
color: var(--success);
|
||||
text-shadow: 0 0 10px rgba(0, 255, 136, 0.4);
|
||||
}
|
||||
|
||||
.reset-pw-sent-sub {
|
||||
font-size: 11px;
|
||||
color: var(--text-muted);
|
||||
line-height: 1.45;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user