/* 密碼欄位：顯示／隱藏切換（登入、註冊、修改密碼等） */
.eai-password-wrap {
  position: relative;
  display: block;
  width: 100%;
}

.eai-password-wrap > input.form-control,
.eai-password-wrap > input[type="password"],
.eai-password-wrap > input[type="text"].eai-password-input {
  width: 100%;
  padding-right: 2.75rem;
}

.eai-password-toggle {
  position: absolute;
  top: 50%;
  right: 0.35rem;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0.35rem;
  background: transparent;
  color: rgba(55, 65, 81, 0.85);
  cursor: pointer;
  line-height: 0;
}

.eai-password-toggle:hover {
  background: rgba(0, 0, 0, 0.06);
  color: rgba(17, 24, 39, 1);
}

.eai-password-toggle:focus-visible {
  outline: 2px solid #478ac9;
  outline-offset: 2px;
}

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

.eai-password-toggle .eai-icon-eye-off {
  display: none;
}

.eai-password-toggle.is-visible .eai-icon-eye {
  display: none;
}

.eai-password-toggle.is-visible .eai-icon-eye-off {
  display: block;
}

body.eai-public-dark-shell .eai-password-toggle {
  color: rgba(251, 191, 36, 0.85);
}

body.eai-public-dark-shell .eai-password-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fbbf24;
}

body.eai-login-admin-shell .eai-password-toggle {
  color: rgba(251, 191, 36, 0.9);
}

body.eai-login-admin-shell .eai-password-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}
