/* Medidor de fuerza de contraseña reutilizable (.pwd-security-panel) */
.pwd-security-panel {
    margin-top: 4px;
}

.pwd-meter-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

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

.pwd-meter-seg {
    height: 6px;
    flex: 1;
    border-radius: 999px;
    background: #e5e7eb;
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.pwd-meter-seg.on-low {
    background: #ef4444;
}

.pwd-meter-seg.on-mid {
    background: #f59e0b;
}

.pwd-meter-seg.on-high {
    background: #2088C8;
    box-shadow: 0 0 8px rgba(32, 136, 200, .55);
}

.pwd-meter-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #9ca3af;
    white-space: nowrap;
    min-width: 58px;
    text-align: right;
    transition: color 0.2s ease;
}

.pwd-meter-label.low {
    color: #ef4444;
}

.pwd-meter-label.mid {
    color: #f59e0b;
}

.pwd-meter-label.high {
    color: #2088C8;
}

.pwd-hint {
    font-size: 10px;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 10px;
}

.pwd-reqs {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pwd-reqs li {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11.5px;
    color: #9ca3af;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 6px 10px;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.pwd-reqs li i {
    font-size: 12px;
    flex-shrink: 0;
    color: #d1d5db;
    transition: color 0.2s ease;
}

.pwd-reqs li.met {
    color: #0A1A33;
    background: rgba(32, 136, 200, 0.10);
    border-color: rgba(32, 136, 200, 0.4);
}

.pwd-reqs li.met i {
    color: #2088C8;
}

.dark .pwd-meter-seg {
    background: rgba(255, 255, 255, 0.12);
}

.dark .pwd-reqs li {
    color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

.dark .pwd-reqs li i {
    color: rgba(255, 255, 255, 0.25);
}

.dark .pwd-reqs li.met {
    color: #ffffff;
    background: rgba(32, 136, 200, 0.18);
    border-color: rgba(32, 136, 200, 0.5);
}

.dark .pwd-reqs li.met i {
    color: #2088C8;
}
