/* Oculta el toggle automático en texto de Botble */
.show-password,
.password-toggle-text,
.toggle-password,
input[type="password"] + span,
input[type="password"] ~ span:not(.password-eye) {
    display: none !important;
}

/* Ojo password */
.password-wrapper {
    position: relative;
}

.password-wrapper img.password-eye {
    width: 18px !important;
    height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;

    position: absolute !important;
    right: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;

    cursor: pointer !important;
    opacity: 0.6 !important;
    z-index: 10 !important;

    /* anula estilos globales */
    display: inline-block !important;
}

.password-wrapper img.password-eye:hover {
    opacity: 1 !important;
}