.password-strength-bar-wrapper {
    display: flex;
    width: 366px;
    flex-direction: column;
    float: none;
    margin: 0;
    padding: 10;
}

.bar-container {
    display: flex;
    gap: 10px;
}

.bar-segment {
    flex: 1;
    height: 8px;
    border-radius: 4px;
    background-color: rgba(128, 128, 128, 0.25);
}

.password-strength-bar-wrapper .active.strength-weak {
    background-color: #f44336;
}

.password-strength-bar-wrapper .active.strength-medium {
    background-color: #ffc107;
}

.password-strength-bar-wrapper .active.strength-good {
    background-color: #8bc34a;
}

.password-strength-bar-wrapper .active.strength-strong {
    background-color: #4caf50;
}

.bar-text {
    font-size: 14px;
    margin-top: 5px;
}

@media (min-width: 768px) and (max-width: 979px) {
    .password-strength-bar-wrapper {
        width: 276px;
    }
}

@media (min-width: 1200px) {
    .password-strength-bar-wrapper {
        width: 456px;
    }
}

@media (max-width: 767px) {
    .password-strength-bar-wrapper {
        width: 100%;
    }
}