/* Show/hide password toggle (used with the password-visibility Stimulus
   controller). Works with both .auth-input and .mc-input fields. */
.password-field {
  position: relative;
}
.password-field input {
  padding-right: 46px;
}
.password-toggle {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  padding: 0;
  border: none;
  background: none;
  border-radius: 8px;
  color: var(--mc-text-muted, #64748b);
  font-size: 0.95rem;
  cursor: pointer;
}
.password-toggle:hover {
  color: var(--mc-text, #1e293b);
}
