.password-input-wrap {
  position: relative;
  width: 100%;
}

.password-input-wrap > input {
  width: 100%;
  padding-right: 3.25rem !important;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: .55rem;
  display: inline-grid;
  width: 2.35rem;
  height: 2.35rem;
  padding: 0;
  place-items: center;
  transform: translateY(-50%);
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #4a5360;
  cursor: pointer;
  z-index: 2;
}

.password-toggle:hover {
  background: rgba(36, 30, 78, .08);
  color: #241e4e;
}

.password-toggle:focus-visible {
  outline: 3px solid rgba(206, 108, 71, .28);
  outline-offset: 1px;
}

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

.password-requirements {
  display: block;
  margin-top: .45rem;
  color: #5b6470;
  font-size: .82rem;
  line-height: 1.45;
}

@media (max-width: 640px) {
  .password-toggle {
    right: .45rem;
    width: 2.5rem;
    height: 2.5rem;
  }
}
