.strength-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 220px;
}

.strength-label,
.strength-text {
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.strength-track {
    flex: 1;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    overflow: hidden;
}

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

.strength-fill.weak { background: #fecaca; }
.strength-fill.medium { background: #fde68a; }
.strength-fill.strong { background: #93c5fd; }
.strength-fill.very-strong { background: #6ee7b7; }
