/* Sign-up page specific styles */

.signup-pw-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.signup-pw-wrap .field {
  padding-right: 2.5rem;
  width: 100%;
}

.pw-toggle-btn {
  position: absolute;
  right: 0.75rem;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--ink-3);
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
}

.pw-toggle-btn:hover {
  color: var(--brand);
  background: var(--surface-2);
}
