.password-strength {
    margin-top: 10px;
}

.password-requirements {
    font-size: 1.25rem;
    margin-top: 8px;
}

.requirement {
    display: flex;
    align-items: center;
    margin: 2px 0;
}

.requirement i {
    margin-right: 8px;
    width: 16px;
}

.requirement.valid {
    color: #28a745;
}

.requirement.invalid {
    color: #dc3545;
}

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

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

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

.strength-fair { 
    background-color: #fd7e14; 
    width: 50%; 
}

.strength-good { 
    background-color: #ffc107; 
    width: 75%; 
}

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

.strength-text {
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 4px;
}