/**
 * Password Validator Styles
 * 
 * Styles for the password validation requirements list
 */

.password-requirements {
    margin-top: 10px;
    padding: 15px;
    border-radius: 5px;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
}

.password-requirements ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

.password-requirements li {
    margin-bottom: 5px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.password-requirements li:last-child {
    margin-bottom: 0;
}

.password-requirements i {
    margin-right: 8px;
}

.text-success {
    color: #198754 !important;
}

.text-danger {
    color: #dc3545 !important;
}

.requirement-icon {
    width: 20px;
    display: inline-block;
    text-align: center;
}
