﻿/* Password Style */
.password
{

}
.progress
{
    width: 0%;
    height: 22px;
    position: absolute;
    top: 0;
    left: 0;
}
.progressbar
{
    border-left: 1px solid #CCC;
    border-right: 1px solid #CCC;
    border-bottom: 1px solid #CCC;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    height: 22px;
    line-height: 20px;
}
.validationbar
{
    color: Red;
    line-height: 20px;
}
.complexity
{
    width: 100%;
    height: 22px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    text-align: center;
    background-color: transparent;
}
.progressbarBad
{
background-color: red;
background-image: -o-linear-gradient(-90deg, #F94046 0%, #92080B 100%);
background-image: -moz-linear-gradient(-90deg, #F94046 0%, #92080B 100%);
background-image: -webkit-linear-gradient(-90deg, #F94046 0%, #92080B 100%);
background-image: -ms-linear-gradient(-90deg, #F94046 0%, #92080B 100%);
background-image: linear-gradient(-90deg, #F94046 0%, #92080B 100%);
}
.progressbarGood
{
background-color: Orange;
background-image: -o-linear-gradient(-90deg, #ff9b3a 0%, #bb4a01 100%);
background-image: -moz-linear-gradient(-90deg, #ff9b3a 0%, #bb4a01 100%);
background-image: -webkit-linear-gradient(-90deg, #ff9b3a 0%, #bb4a01 100%);
background-image: -ms-linear-gradient(-90deg, #ff9b3a 0%, #bb4a01 100%);
background-image: linear-gradient(-90deg, #ff9b3a 0%, #bb4a01 100%);
}
.progressbarAwesome
{
background-color: green;
background-image: -o-linear-gradient(-90deg, #8AD702 0%, #389100 100%);
background-image: -moz-linear-gradient(-90deg, #8AD702 0%, #389100 100%);
background-image: -webkit-linear-gradient(-90deg, #8AD702 0%, #389100 100%);
background-image: -ms-linear-gradient(-90deg, #8AD702 0%, #389100 100%);
background-image: linear-gradient(-90deg, #8AD702 0%, #389100 100%);
}