/* Password Strength Meter Styles */
.password-strength-meter {
    margin-top: 8px;
    padding: 12px;
    background-color: #f8f9fa;
    border-radius: 4px;
    border: 1px solid #dee2e6;
    width: 100%;
    display: block;
}

.strength-bar {
    width: 100%;
    height: 6px;
    background-color: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.strength-fill {
    height: 100%;
    width: 0%;
    transition: width 0.3s ease, background-color 0.3s ease;
    border-radius: 3px;
}

/* Strength levels */
.strength-fill.strength-0 {
    background-color: #dc3545; /* Red - Very Weak */
}

.strength-fill.strength-1 {
    background-color: #fd7e14; /* Orange - Weak */
}

.strength-fill.strength-2 {
    background-color: #ffc107; /* Yellow - Fair */
}

.strength-fill.strength-3 {
    background-color: #0dcaf0; /* Cyan - Good */
}

.strength-fill.strength-4 {
    background-color: #198754; /* Green - Strong */
}

.strength-fill.strength-5 {
    background-color: #0d6efd; /* Blue - Very Strong */
}

.strength-text {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: left;
}

.strength-text.strength-0 {
    color: #dc3545;
}

.strength-text.strength-1 {
    color: #fd7e14;
}

.strength-text.strength-2 {
    color: #ffc107;
}

.strength-text.strength-3 {
    color: #0dcaf0;
}

.strength-text.strength-4 {
    color: #198754;
}

.strength-text.strength-5 {
    color: #0d6efd;
}

.password-requirements {
    margin-top: 8px;
    text-align: left;
}

.requirement-item {
    display: flex;
    align-items: center;
    font-size: 12px;
    margin-bottom: 4px;
    color: #6c757d;
    transition: color 0.2s ease;
}

.requirement-item.requirement-satisfied {
    color: #198754;
}

.requirement-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    font-weight: bold;
    text-align: center;
    line-height: 16px;
}

.requirement-icon.requirement-met {
    color: #198754;
}

.requirement-icon.requirement-unmet {
    color: #dc3545;
}

.requirement-text {
    flex: 1;
}

/* Mobile responsive */
@media (max-width: 576px) {
    .password-strength-meter {
        padding: 10px;
    }
    
    .requirement-item {
        font-size: 11px;
    }
    
    .strength-text {
        font-size: 11px;
    }
}
