/* password strength bar */
.password-strength {
    height: 4px;
    background-color: #e0d6c8;
    border-radius: 2px;
    margin-top: 8px;
}
.password-strength-bar {
    height: 4px;
    border-radius: 2px;
    width: 0%;
    transition: width 0.3s;
}
.strength-weak   { background-color: #e74c3c; width: 33%; }
.strength-medium { background-color: #f39c12; width: 66%; }
.strength-strong { background-color: #27ae60; width: 100%; }

/* little requirement tags */
.req-list {
    list-style: none;
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.req-list li {
    font-size: 0.72rem;
    padding: 3px 8px;
    border-radius: 50px;
    background-color: #e0d6c8;
    color: #888;
}
.req-list li.met {
    background-color: #d4f5e2;
    color: #1a7a42;
}
