@font-face {
    font-family: 'Glyphicons';
    src: url('../fonts/glyphicons-halflings-regular.eot');
    src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons-halflingsregular') format('svg');
}

.password-input-wrapper {
    position: relative;
}

.password-input-wrapper .show-password-button {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 40px;
    cursor: pointer;
}

.password-input-wrapper input[type="password"] {
    padding-right: 40px;
}

.show-password-button {
    /*height: ;*/
}

.show-password-button:before {
    font-family: 'Glyphicons';
    content: "\e105";
    font-size: 20px;
    line-height: 20px;
    width: 40px;
    text-align: center;
    color: #777777;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.show-password-button:hover:before {
    color: #333333;
}

.show-password-button.pressed:before {
    content: "\e106";
}