/* ===== COMPONENTE EYE-ICON ===== */

.eye-icon {
  width: 16px;
  height: 16px;
  transition: all var(--transition-normal);
  cursor: pointer;
  color: var(--text-placeholder);
}

.eye-icon:hover {
  color: var(--primary-blue);
}

/* ===== TAMANHOS ===== */

.eye-icon--small {
  width: 14px;
  height: 14px;
}

.eye-icon--large {
  width: 18px;
  height: 18px;
}

/* ===== ESTADOS ===== */

.eye-icon:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.eye-icon--active {
  color: var(--primary-blue);
} 