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

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

.password-visibility {
  position: absolute;
  top: 50%;
  right: 7px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  padding: 0;
  transform: translateY(-50%);
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #685e67;
}

.password-visibility:hover {
  background: #f1ebe4;
  color: #2f2830;
}

.password-visibility:focus-visible {
  outline: 2px solid #ad996c;
  outline-offset: 1px;
}

.password-visibility svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
