.password-input-shell {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
}

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

.password-visibility-toggle {
  position: absolute;
  top: 50%;
  right: 9px;
  z-index: 2;
  display: grid;
  width: 36px;
  height: 36px;
  padding: 0;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid transparent;
  border-radius: 11px;
  background: transparent;
  color: rgba(239, 229, 221, 0.55);
  cursor: pointer;
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.password-visibility-toggle:hover,
.password-visibility-toggle:focus-visible,
.password-visibility-toggle[aria-pressed="true"] {
  border-color: rgba(255, 177, 108, 0.22);
  background: rgba(255, 168, 91, 0.09);
  color: #ffc58f;
  outline: none;
}

.password-visibility-toggle:active {
  transform: translateY(-50%) scale(0.94);
}

.password-visibility-toggle svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 640px) {
  .password-visibility-toggle {
    right: 7px;
    width: 34px;
    height: 34px;
  }
}
