/* Einheitliches Passwort-Auge für öffentliche Login- und Registrierungsformulare */
.ivd-password-field {
  position: relative;
  width: 100%;
}

.ivd-password-field > input {
  width: 100%;
  padding-right: 52px !important;
}

.ivd-password-toggle {
  position: absolute;
  top: 50%;
  right: 5px;
  z-index: 3;
  width: 42px;
  height: 42px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #173b63;
  border-radius: 9px;
  padding: 0;
  margin: 0;
  cursor: pointer;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
}

.ivd-password-toggle svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.ivd-password-eye-slash {
  display: none;
}

.ivd-password-toggle[aria-pressed="true"] .ivd-password-eye-slash {
  display: block;
}

.ivd-password-toggle:hover,
.ivd-password-toggle:focus {
  background: #e9f2fb;
  outline: none;
}

.ivd-password-toggle:focus-visible {
  box-shadow: 0 0 0 3px rgba(31, 111, 178, .25);
}
