/**
 * @author    WEBTEX SAS <contact@webtex.fr>
 * @copyright 2025 WEBTEX SAS
 * @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
 *
 * This source file is subject to the Academic Free License (AFL 3.0)
 * that is bundled with this package in the file LICENSE.txt.
 *
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/afl-3.0.php
 *
 * DISCLAIMER
 *
 * This module is proprietary software. You may not redistribute, modify,
 * or reverse-engineer this code without explicit written permission from WEBTEX SAS.
 * For commercial use or customization, please contact us at contact@webtex.fr.
 */
.wxpwd-wrap {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.3;
}

.wxpwd-rule {
  margin-bottom: 6px;
  color: #333;
}

.wxpwd-meter {
  height: 6px;
  background: #e9e9e9;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}

.wxpwd-bar {
  height: 100%;
  width: 0%;
  transition: width 160ms ease;
}

.wxpwd-wrap[data-level="bad"] .wxpwd-bar {
  background: #d9534f;
}
.wxpwd-wrap[data-level="medium"] .wxpwd-bar {
  background: #f0ad4e;
}
.wxpwd-wrap[data-level="good"] .wxpwd-bar {
  background: #5cb85c;
}

.wxpwd-checklist {
  padding-left: 16px;
  margin: 0;
}

.wxpwd-checklist li {
  margin: 2px 0;
  color: #666;
  list-style: disc;
}

.wxpwd-checklist li.is-ok {
  color: #2e7d32;
}
.wxpwd-checklist li.is-ko {
  color: #b71c1c;
}
