﻿#password-strength {
    height: 20px;
    border-radius: 5px;
    margin-top: 5px;
}

    #password-strength .progress-bar {
        border-radius: 5px;
    }

    #password-strength .bg-danger {
        background-color: red;
    }

    #password-strength .bg-warning {
        background-color: orange;
    }

    #password-strength .bg-success {
        background-color: green;
    }

#password-conditions {
    padding-top: 8px;
    background-color: #ccc7c726;
    border-radius: 7px;
    padding-bottom: 8px;
}

    #password-conditions .password-condition {
        margin: auto;
        margin-top: 2px;
        width: 50%;
        color: red;
        font-size: 13px;
        background: url('../images/png/invalid.png') no-repeat 0 50%;
        padding-left: 20px;
    }

        #password-conditions .password-condition.met {
            color: green;
            background: url('../images/png/valid.png') no-repeat 0 50%;
            padding-left: 20px;
        }
