Index: petify-frontend/src/api/auth.ts
===================================================================
--- petify-frontend/src/api/auth.ts	(revision ae836471908c8a67e8fc2a25ad6c445b1c867e48)
+++ petify-frontend/src/api/auth.ts	(revision 92e7c7aeb21d4b882e2f8107b1676468ceb14aa7)
@@ -24,14 +24,4 @@
   }
   message?: string
-}
-
-export interface ChangePasswordRequest {
-  userId: number
-  currentPassword: string
-  newPassword: string
-}
-
-export interface ForgotPasswordRequest {
-  identifier: string
 }
 
@@ -151,11 +141,2 @@
   return { message: data.message || "Registration successful" }
 }
-
-export async function changePassword(payload: ChangePasswordRequest, options?: { signal?: AbortSignal }): Promise<void> {
-  await postJson<{ message?: string }>('/api/auth/change-password', payload, options)
-}
-
-export async function forgotPassword(payload: ForgotPasswordRequest, options?: { signal?: AbortSignal }): Promise<string> {
-  const data = await postJson<{ message?: string }>('/api/auth/forgot-password', payload, options)
-  return data.message || 'If an account matches that username or email, a temporary password has been sent.'
-}
Index: petify-frontend/src/api/clinicApplications.ts
===================================================================
--- petify-frontend/src/api/clinicApplications.ts	(revision ae836471908c8a67e8fc2a25ad6c445b1c867e48)
+++ 	(revision )
@@ -1,38 +1,0 @@
-function getBaseUrl(): string {
-  const base = (import.meta.env.VITE_API_BASE_URL as string | undefined) ?? ''
-  return base.replace(/\/$/, '')
-}
-
-function joinUrl(base: string, path: string): string {
-  if (!base) return path
-  return `${base}${path.startsWith('/') ? '' : '/'}${path}`
-}
-
-export type ClinicApplicationRequest = {
-  name: string
-  email: string
-  phone: string
-  city: string
-  address: string
-}
-
-export async function submitClinicApplication(payload: ClinicApplicationRequest): Promise<any> {
-  const url = joinUrl(getBaseUrl(), '/api/clinic-applications')
-  const res = await fetch(url, {
-    method: 'POST',
-    headers: {
-      'Content-Type': 'application/json',
-      Accept: 'application/json',
-    },
-    body: JSON.stringify(payload),
-  })
-
-  const contentType = res.headers.get('content-type') || ''
-  const data = contentType.includes('application/json') ? await res.json() : null
-
-  if (!res.ok) {
-    throw new Error(data?.error || `Failed to submit clinic application (${res.status})`)
-  }
-
-  return data
-}
