#show_hide_password{
    position: relative;
}
#show_hide_password input{
    padding-right: 100px;
}
#show_hide_password .click-shp-txt{
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 10px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    margin-top: -10px;
    transition: color 0.3s ease;
    width: 90px;
    text-align: right;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}
#show_hide_password .click-shp-txt:hover{
    color: #f6861f;
}

.login-info-box{
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}
.login-panel .btn-box{
    
}
.login-panel .btn-box .btn{
    float: left;
    margin-right: 30px;
}
.login-panel .btn-box .forgot-password-link{
    float: left;
    margin-top: 10px;
}
@media (max-width: 991px){
    .login-panel .btn-box{
        margin-bottom: 40px;
    }
}

@media (max-width: 767px){
    #show_hide_password input {
        padding-right: 80px;
    }
    #show_hide_password .click-shp-txt {
        font-size: 12px;
        width: 70px;
    }
    .login-panel .btn-box .btn{
        float: none;
        margin-right: 0px;
    }
    .login-panel .btn-box .forgot-password-link{
        float: none;
        margin-top: 20px;
    }
}