/* 密码强度条 */

/* ── Strength ── */
.strength-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.strength-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    min-width: 32px;
}

.strength-track {
    flex: 1;
    height: 8px;
    background: var(--bg-elevated);
    border-radius: 4px;
    overflow: hidden;
}

.strength-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s, background 0.3s;
    width: 0;
}

.strength-fill.weak { background: var(--danger); }
.strength-fill.medium { background: #fbbf24; }
.strength-fill.strong { background: var(--success); }
.strength-fill.very-strong { background: var(--accent); }

.strength-text {
    font-size: 0.85rem;
    font-weight: 600;
    min-width: 36px;
}


