.password-box {
    background: #f8f9fb;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #4b5563;
}

.req-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
}

.req-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 4px 0;
}

.req-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    flex-shrink: 0;
}

.req-item.valid .req-indicator {
    background: #22c55e;
}

.req-item.invalid .req-indicator {
    background: #f97316;
}

.strength {
    margin-top: 10px;
}

.strength-bar {
    height: 6px;
    border-radius: 4px;
    background: #e5e7eb;
    overflow: hidden;
}

.strength-bar span {
    display: block;
    height: 100%;
    width: 0;
    background: #f97316;
    transition: width 0.2s ease, background-color 0.2s ease;
}

.match-hint {
    font-size: 12px;
    margin-top: 6px;
    color: #4b5563;
}

.match-hint.valid {
    color: #22c55e;
}

.match-hint.invalid {
    color: #dc2626;
}
