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

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

.password-toggle {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: #6d6558;
  cursor: pointer;
  border-radius: 8px;
  display: grid;
  place-items: center;
  padding: 0;
}

.password-toggle:hover {
  color: #2a261f;
  background: rgba(44, 58, 36, 0.06);
}

.password-toggle:focus-visible {
  outline: 2px solid rgba(44, 58, 36, 0.35);
  outline-offset: 1px;
}

.password-toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.password-toggle-icon--hide {
  display: none;
}

.password-toggle[aria-pressed="true"] .password-toggle-icon--show {
  display: none;
}

.password-toggle[aria-pressed="true"] .password-toggle-icon--hide {
  display: block;
}
