/* ============================================
   PASSWORD STRENGTH METER
   ============================================ */
.pwd-strength-wrap {
    margin-top: 0.5rem;
}
.pwd-strength-bar-track {
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.35rem;
}
.pwd-strength-bar-fill {
    height: 100%;
    width: 0;
    border-radius: 3px;
    transition: width 0.4s ease, background 0.4s ease;
}
.pwd-strength-text {
    font-size: 0.78rem;
    font-weight: 600;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.pwd-strength-text i {
    font-size: 0.85rem;
}
.pwd-strength-hint {
    font-size: 0.72rem;
    color: #888;
    margin-top: 0.15rem;
    transition: opacity 0.3s ease;
}
.pwd-min-note {
    font-size: 0.75rem;
    color: #6c757d;
    margin-top: 0.25rem;
}
.pwd-min-note i {
    margin-right: 0.25rem;
}
.pwd-min-note.met {
    color: #198754;
}
