/* ===== INPUT FIX ===== */

.regcheck-ok{
background:#e6f4ea !important;
border-color:#2e7d32 !important;
}

.regcheck-bad{
background:#fdecea !important;
border-color:#c62828 !important;
}

/* ===== ICON (POSITION ABSOLUE BODY) ===== */

.regcheck-icon{
position:absolute;
font-size:13px;
pointer-events:none;
z-index:50;
}

/* ===== MSG ===== */

.regcheck-msg{
font-size:11px;
margin-top:3px;
}

.regcheck-msg-ok{color:#2e7d32;}
.regcheck-msg-bad{color:#c62828;}

/* ===== PASSWORD BAR FIX ===== */

.regcheck-bar{
height:5px;
margin-top:4px;
width:100%;          /* ← suit le champ */
max-width:100%;      /* ← ne dépasse jamais */
background:#ddd;
border-radius:3px;
overflow:hidden;
}

.regcheck-bar-inner{
height:100%;
width:0%;
transition:width .2s ease;
}

.regcheck-bar-weak{background:#c62828}
.regcheck-bar-mid{background:#f9a825}
.regcheck-bar-strong{background:#2e7d32}