﻿.passwordcheck .form-control {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.passwordcheck .progress {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border: 1px solid #ced4da;
    border-top: 0;
    height: 1.8rem;
    font-size: 1.3rem;
}

#passwordcheck-result {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #007bff;
    transition: width .6s ease;
}

#passwordcheck-result.short{
    background-color: #dc3545;
    width: 25%;
}

#passwordcheck-result.weak{
    background-color: orange;
    width: 50%;
}

#passwordcheck-result.good{
    background-color: #007bff;
    width: 75%;
}

#passwordcheck-result.strong{
    background-color: #28a745;
    width: 100%;
}