/* --- Password strength meter (HIPAA Task 1, signup page) 07.13.26 --- */
/* Mirrors the dispatch-app meter styles (v2/dispatch.css) for the front signup page. */
.zk-pw-meter { margin-top: 6px; }
.zk-pw-meter .zk-pw-track { height: 5px; border-radius: 3px; background: #e6e6e6; overflow: hidden; }
.zk-pw-meter .zk-pw-fill { height: 100%; width: 0; border-radius: 3px; transition: width .2s ease, background .2s ease; }
.zk-pw-meter .zk-pw-label { display: block; font-size: 11px; margin-top: 3px; color: #8a8a8a; }
.zk-pw-l1 .zk-pw-fill { width: 20%; background: #e74c3c; }
.zk-pw-l1 .zk-pw-label { color: #e74c3c; }
.zk-pw-l2 .zk-pw-fill { width: 40%; background: #e67e22; }
.zk-pw-l3 .zk-pw-fill { width: 60%; background: #f1c40f; }
.zk-pw-l4 .zk-pw-fill { width: 80%; background: #89d541; }
.zk-pw-l5 .zk-pw-fill { width: 100%; background: #6fb830; }
.zk-pw-l4 .zk-pw-label, .zk-pw-l5 .zk-pw-label { color: #6fb830; }
