.password-field {
  position: relative;
  display: block;
}

.password-field input {
  padding-right: 54px;
}

.password-toggle {
  position: absolute;
  z-index: 1;
  right: 5px;
  top: 50%;
  transform: translateY(-42%);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0;
  padding: 7px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #766b67;
  cursor: pointer;
}

.password-toggle:hover {
  background: #79091610;
  color: var(--wine);
}

.password-toggle svg {
  width: 29px;
  height: 23px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.password-toggle svg circle {
  fill: currentColor;
  stroke: none;
}

.password-toggle .eye-lashes {
  stroke-width: 1.7;
}

.password-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}
