.strength_wrapper {
    display: block;
    position: relative;
    text-align: left;
}

.strength_input{
    width: 250px;
    font-size: 25px;
    background: transparent;
}

.strength_meter {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: -1;
    overflow: hidden;
}

.button_strength {
    text-decoration: none;
   
    font-size:.8rem;
    display: block;

    /*Change*/
    position: absolute;
    z-index: 1;
    right: 0;
    top: -21px;
}

.strength_meter div {
    width: 0%;
    height: 34px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.strength_meter div p {
    position: absolute;
    right: 10px;
    color: #4d4d4d;
    font-size: 13px;
    padding-right: 30px;
}

.veryweak {
    background-color: #f8d7da;
    width: 25% !important;
}

    .veryweak p {
        color: #721c24;
    }

.weak {
    background-color: #fff3cd;
    width: 50% !important;
}

    .weak p {
        color: #856404;
    }

.medium {
    background-color: #d1ecf1;
    width: 75% !important;
}
    .medium p {
        color: #0c5460;
    }

.strong {
    background-color: #d4edda;
    width: 100% !important;
}

.strong p {
    color: #155724;
}

.stronger p {
    color: #155724;
}

.stronger {
    background-color: #9BF47D;
    width: 100% !important;
}



/* Styles for verification */
.pswd_info {
    position: absolute;
    width: 100%;
    padding: 10px 15px;
    background: #fafafa;
    font-size: 20px;
    border-radius: 4px;
    /*box-shadow: 0 1px 3px #ccc;*/
    border: 1px solid #ddd;
    display: none;
    z-index: 1000;
    top: 60px;
    right: 0;
    background-color: rgb(250,250,250);
    /*box-shadow: 5px 5px 5px #888888;*/
}

.pswd_info:before,
.pswd_info:after {
    position: absolute;
    bottom: 100%;
    content: '';
}

.pswd_info:before {
    right: 52px;
    border-right: 17px solid transparent;
    border-bottom: 17px solid #ddd;
    border-left: 17px solid transparent;
}

    .pswd_info:after {
        right: 53px;
        border-right: 16px solid transparent;
        border-bottom: 16px solid rgb(250,250,250);
        border-left: 16px solid transparent;
    }

.pswd_info h4 {
	margin:0 0 3px 0; 
	padding:0;
	font-weight:normal;
    font-size: 1em;
    font-size: 0.8rem;
}

.pswd_info ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

    .pswd_info ul li {
        visibility: visible !important;
        /*height: 20px !important;
    min-height: 20px !important;*/
        line-height: 1.3rem;
        font-size: 0.78rem;
        padding-left: 24px !important;
    }

.pswd_info .invalid {
	background:url(images/invalid.png) no-repeat 0 50%;
	color:#d44950;
}
.pswd_info .valid {
	background:url(images/valid.png) no-repeat 0 50%;   
	color:#3a7d34;
}

/* custom styles for third password strength */
.t_strength_meter {
    position: absolute;
    height: 23px;
    bottom: -2px;
    width: 100%;
    z-index: 2;
    overflow: hidden;

    /*Change*/
    bottom: -18px;
    height: 17px;
}

.t_strength_meter div {
    width: 0%;
    height: 34px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

    .t_strength_meter div p {
        position: absolute;
        /*right: 10px;*/
        left: 10px;
        
        margin: 0px;
        font-size: .7rem;
        font-weight: bold;
        top: -6px;
    }