<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width,initial-scale=1" />
    <title>Page not found — 404</title>
    <!-- Tailwind Play CDN (good for prototypes / quick styling) -->
    <script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-gray-50 text-gray-800 antialiased">
<div class="min-h-screen flex items-center justify-center px-4">
    <div class="max-w-3xl w-full bg-white shadow-lg rounded-lg p-8 md:p-12">
        <div class="flex items-start gap-6">
            <!-- decorative icon -->
            <div class="flex-shrink-0">
                <div class="h-20 w-20 rounded-full bg-red-50 flex items-center justify-center">
                    <svg class="h-12 w-12 text-red-600" fill="none" viewBox="0 0 24 24" stroke="currentColor">
                        <path stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"
                              d="M12 9v2m0 4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"/>
                    </svg>
                </div>
            </div>

            <div>
                <h1 class="text-4xl font-extrabold mb-2">404 — Page not found</h1>
                <p class="text-gray-600 mb-6">We couldn't find the page you were looking for. It may have been moved, deleted, or the URL is incorrect.</p>

                <div class="flex flex-col sm:flex-row gap-3">
                    <a href="/" class="inline-flex items-center justify-center px-5 py-3 rounded-md bg-blue-600 text-white font-semibold hover:bg-blue-700">
                        Go to Home
                    </a>

                    <button onclick="history.back()" class="inline-flex items-center justify-center px-5 py-3 rounded-md border border-gray-200 bg-white text-gray-700 hover:bg-gray-50">
                        Go Back
                    </button>
                </div>

                <div class="mt-6 text-sm text-gray-500">
                    <p>If you typed the address, double-check the spelling. If you followed a link, please let us know so we can fix it.</p>
                </div>
            </div>
        </div>

        <footer class="mt-8 text-xs text-gray-400 border-t pt-4">
            <div class="flex items-center justify-between">
                <span>Competency Assessment System</span>
                <span>2026-04-14 17:12</span>
            </div>
        </footer>
    </div>
</div>
</body>
</html>
