/* /css/common/toggle-icon.css */
/* password eye toggle 공용 스타일 */

.input-with-icon {
  position: relative;
}

.input-icon-toggle {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background: transparent;
  border: 0;
  padding: 0;
  color: #434343;
}

.input-icon-toggle span{
  display: flex;
  justify-content: center;
  align-items: center;
}

.input-icon-toggle:focus {
  outline: none;
}

.input-icon-toggle svg {
  width: 20px;
  height: 20px;
  pointer-events: none; /* 아이콘 클릭해도 부모에 이벤트 */
}