.password-strength-checklist {
    margin-top: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.strength-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: #666;
    transition: all 0.3s ease;
}

.strength-item i {
    font-size: 0.6rem;
    color: #ccc;
    transition: all 0.3s ease;
}

.strength-item.valid {
    color: #28a745;
}

.strength-item.valid i {
    color: #28a745;
}

.strength-item.valid i::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.strength-item.invalid {
    color: #dc3545;
}

.strength-item.invalid i {
    color: #dc3545;
}

.strength-item.invalid i::before {
    content: "\f057";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.strength-indicator {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.strength-bar {
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.strength-fill {
    height: 100%;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.strength-fill.strength-weak {
    width: 25%;
    background: #dc3545;
}

.strength-fill.strength-medium {
    width: 50%;
    background: #ffc107;
}

.strength-fill.strength-good {
    width: 75%;
    background: #17a2b8;
}

.strength-fill.strength-strong {
    width: 100%;
    background: #28a745;
}

.strength-text {
    font-size: 0.9rem;
    font-weight: 500;
}

.strength-text strong {
    font-weight: 700;
}

@media (max-width: 768px) {
    .password-strength-checklist {
        padding: 0.75rem;
    }
    
    .strength-item {
        font-size: 0.85rem;
    }
}
