/* Vorte Password Eye Toggle - v2 (wrapper-less) */
.vorte-eye-btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin: 0;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: color 0.15s ease;
  width: 28px;
  height: 28px;
  line-height: 1;
}

.vorte-eye-btn:hover {
  color: #333;
}

.vorte-eye-btn.is-visible {
  color: #4a90d9;
}

.vorte-eye-btn:focus {
  outline: 2px solid #4a90d9;
  outline-offset: 2px;
  border-radius: 3px;
}

.vorte-eye-btn svg {
  display: block;
  pointer-events: none;
}

/* Karanlik tema uyumlulugu */
.dark-mode .vorte-eye-btn,
[data-theme="dark"] .vorte-eye-btn {
  color: #aaa;
}

.dark-mode .vorte-eye-btn:hover,
[data-theme="dark"] .vorte-eye-btn:hover {
  color: #fff;
}
