div.password-punch {
    display: block;
    padding: 15px;
    background-color: #FFF;
    border-radius: 4px;
    box-shadow: 0px 1px 5px rgba(0,0,0,.25);
    position: absolute;
    top: -53px;
    right: -213px;
    opacity: 0;
     transition: all 0.5s ease-in-out 0s;
     z-index: 9999;
}
input[type="password"]:focus ~ div.password-punch{
	opacity: 1;
     transition: all 0.5s ease-in-out 0s;
}
div.password-punch:before {
    position: absolute;
    top: 50%;
    left: -24px;
    content: '';
    width: 1px;
    height: 1px;
    border: 12px solid transparent;
    border-right: 11px solid #dcdcdc;
    margin-top: -12px;
}

div.password-punch:after {
    position: absolute;
    top: 50%;
    left: -20px;
    content: '';
    width: 1px;
    height: 1px;
    border: 10px solid transparent;
    border-right: 10px solid #FFF;
    margin-top: -10px;
}
 .rule-style-default {
    list-style: none;
    font-size: 12px;
    color: #999;
    margin-bottom: 0;
    padding-left: 0;
}
 .rule-style-default li:before {
     content: "\f046";
     display: inline-block;
     margin-right: 7px;
     font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
 .rule-style-default li {
     width: 100%;
     line-height: 2;
     transition: all 0.8s ease-in-out 0s;
}
 .rule-style-default li.validated {
    color: #333;
     transition: all 0.8s ease-in-out 0s;
}
 .rule-style-default li.validated:before {
    color: #59a55a;
     transition: all 0.8s ease-in-out 0s;
}
 .clearFix {
    clear:both;
}

 .password-punch-area {
     position: relative;
}
