#password-strength-meter {
    width: 100%;
    background-color: #ddd;
    height: 4px;
    margin-top: 10px;
}

#password-strength-bar {
    height: 4px;
    width: 0%;
    transition: width 0.5s;
}
#password-strength-text {
    text-align: right;
    margin-bottom: 4px;
    color: #666;
    font-size: 14px;
    height: 20px; /* Высота для текста, чтобы он не "прыгал" при изменении содержимого */
}

#password-strength-text.weak {
    color: red;
}

#password-strength-text.normal {
    color: orange;
}

#password-strength-text.good {
    color: blue;
}

#password-strength-text.excellent {
    color: green;
}