.password-meter {
    display: flex;
    gap: 4px;
}

.password-meter .bar {
    width: 24px;
    height: 5px;
    background: #e9ecef;
    border-radius: 2px;
}

.password-meter-text {
    font-size: 0.75rem;
    color: #ffc107;
}
.password-meter-text-weak {
    font-size: 0.75rem;
    color: #dc3545;
}
.password-meter-text-strong {
    font-size: 0.75rem;
    color: #198754;
}

.password-meter.weak .bar:nth-child(1) {
    background: #dc3545;
}

.password-meter.medium .bar:nth-child(1),
.password-meter.medium .bar:nth-child(2) {
    background: #ffc107;
}

.password-meter.strong .bar {
    background: #198754;
}
