@charset "utf-8";
/*----------------------------------------------------
/* password button */
--------------------------------------------------- */
/* アイコンを右端に固定するために td を基準にする */
td {
  position: relative;
  overflow: visible;
}

/* ラッパー */
.pw-wrap {
  display: inline-flex;               /* ← これがポイント */
  align-items: center;                /* ← input とボタンの縦位置を揃える */
  position: relative;
}

/* 入力欄 */
.pw-input {
  box-sizing: border-box;
  padding-right: 2em;                 /* アイコンと重ならないように */
}

/* 目アイコン（絶対配置しない！） */
.pw-eye {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  margin-left: -2em;                  /* 入力欄の右端に重ねる */
  margin-top: -2px;
  z-index: 2;
  color: #555;
}

/* Edge の内蔵アイコンを消す */
input[type="password"]::-ms-reveal {
  display: none !important;
}