.reset-input-shell.reset-password-shell {
  grid-template-columns: 42px minmax(0, 1fr) 42px;
}

.reset-password-toggle {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  justify-self: center;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #64748b;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, transform 120ms ease;
}

.reset-password-toggle:hover,
.reset-password-toggle:focus-visible,
.reset-password-toggle.is-visible {
  color: #0f63ff;
  background: rgba(15, 99, 255, .07);
}

.reset-password-toggle:active {
  transform: scale(.94);
}

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

.reset-password-toggle svg[hidden] {
  display: none;
}

@media (max-width: 820px) {
  .reset-input-shell.reset-password-shell {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
  }

  .reset-password-toggle {
    width: 40px;
    height: 40px;
  }
}
