
.password-strength-bar {
    height: 20px;
    background-color: #ddd;
    margin-top: 5px;
    margin-bottom: 10px;
    border-radius: 8px;
}

.password-strength-bar .strength-level {
    height: 20px;
    display: flex;
    color: #ffffff;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    font-size: 12px;
}

.strength-level.weak {
    background-color: #f5222d;
    width: 30%;
}

.strength-level.medium {
    background-color: #fa8c16;
    width: 70%;
}

.strength-level.strong {
    background-color: #52c41a;
    width: 100%;
}

.improvement-tip {
    font-size: 12px;
    color: #333333;
}