<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>FinanceTrack Admin Login</title>
    <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap" rel="stylesheet">
    <style>
        :root {
            --bg: #0A0A0A;
            --accent: #C5F135;
            --card: #161616;
            --text: #ffffff;
            --text-sec: #888;
        }
        body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); display: flex; align-items: center; justify-content: center; height: 100vh; margin: 0; }
        .login-card { background: var(--card); padding: 50px; border-radius: 32px; width: 100%; max-width: 420px; border: 1px solid #333; box-shadow: 0 40px 100px rgba(0,0,0,0.6); }
        .logo { font-size: 28px; font-weight: 800; color: var(--accent); text-align: center; margin-bottom: 20px; letter-spacing: -1px; }
        h1 { font-size: 24px; font-weight: 700; margin-bottom: 10px; text-align: center; }
        p.subtitle { color: var(--text-sec); text-align: center; margin-bottom: 40px; font-size: 15px; }
        
        .form-group { margin-bottom: 20px; }
        label { display: block; margin-bottom: 10px; color: var(--text-sec); font-size: 13px; font-weight: 600; text-transform: uppercase; }
        input { width: 100%; box-sizing: border-box; padding: 16px; background: #222; border: 1px solid #333; color: white; border-radius: 12px; font-size: 16px; transition: border 0.3s; }
        input:focus { border-color: var(--accent); outline: none; }
        
        button { width: 100%; padding: 18px; background: var(--accent); color: black; border: none; border-radius: 14px; font-weight: 800; font-size: 16px; cursor: pointer; margin-top: 20px; transition: transform 0.2s; }
        button:hover { transform: scale(1.02); }
        .error { background: rgba(255, 85, 85, 0.1); color: #ff5555; padding: 12px; border-radius: 10px; font-size: 14px; text-align: center; border: 1px solid rgba(255, 85, 85, 0.2); margin-bottom: 20px; }
    </style>
</head>
<body>
    <div class="login-card">
        <div class="logo">FINANCETRACK</div>
        <h1>Admin Control</h1>
        <p class="subtitle">Secure login for management panel.</p>
        
                
        <form method="POST" autocomplete="off">
            <div class="form-group">
                <label>Email Address</label>
                <input type="email" name="email" placeholder="admin@domain.com" required>
            </div>
            <div class="form-group">
                <label>Password</label>
                <input type="password" name="password" placeholder="••••••••" required>
            </div>
            <button type="submit">AUTHORIZE ACCESS</button>
        </form>
    </div>
</body>
</html>
