/**
 * Password Validation Styles
 */

/* Thanh độ mạnh mật khẩu */
.password-strength-container {
    margin-top: 8px;
}

.password-strength-meter {
    height: 5px;
    background-color: #e9ecef;
    border-radius: 3px;
    margin-bottom: 5px;
    overflow: hidden;
}

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

.password-strength-text {
    font-size: 0.85rem;
    margin-bottom: 5px;
}

/* Danh sách yêu cầu mật khẩu */
.password-requirements ul {
    margin-bottom: 0;
}

.password-requirements li {
    font-size: 0.85rem;
    margin-bottom: 3px;
    transition: color 0.3s ease;
}

.password-requirements i {
    margin-right: 5px;
    width: 14px;
    text-align: center;
}

/* Hiệu ứng khi focus vào trường mật khẩu */
.password-validate:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    border-color: #86b7fe;
}

/* Hiệu ứng cho nút hiển thị/ẩn mật khẩu */
.toggle-password {
    cursor: pointer;
}

.toggle-password:hover {
    background-color: #e9ecef;
}

.toggle-password:focus {
    box-shadow: none;
}

/* Responsive */
@media (max-width: 576px) {
    .password-requirements li {
        font-size: 0.8rem;
    }
}
