/* Show/hide toggle for password inputs. Wrap the <input type="password">
   in a .pw-wrap and put a .pw-toggle button right after it — see
   password-toggle.js for the click behavior. Shared across auth.html,
   reset_password.html and index.html (styles.css/landing.css don't share
   a base file, so this lives on its own instead of being duplicated). */
.pw-wrap {
  position: relative;
}
.pw-wrap input {
  padding-right: 34px !important;
}
.pw-toggle {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  padding: 0;
  border: none;
  background: none;
  color: var(--fg-muted, #7a7a85);
  cursor: pointer;
  border-radius: 4px;
}
.pw-toggle:hover {
  color: var(--fg, #111);
}
.pw-toggle svg {
  width: 16px;
  height: 16px;
}
