<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>EG2CENTER | Mainframe</title>

    <style>

        body { background-color: #0b0f19; color: #f3f4f6; font-family: monospace; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; }

        .container { text-align: center; border: 1px solid #1f2937; padding: 40px; background-color: #111827; border-radius: 8px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); max-width: 400px; width: 100%; }

        h1 { color: #3b82f6; font-size: 24px; margin-bottom: 10px; letter-spacing: 2px; }

        p { color: #9ca3af; font-size: 14px; margin-bottom: 25px; }

        input[type="email"] { width: 90%; padding: 10px; margin-bottom: 15px; background-color: #1f2937; border: 1px solid #374151; color: #fff; border-radius: 4px; font-family: monospace; text-align: center; }

        input[type="submit"] { width: 95%; padding: 10px; background-color: #3b82f6; border: none; color: #fff; border-radius: 4px; font-weight: bold; cursor: pointer; font-family: monospace; }

        input[type="submit"]:hover { background-color: #2563eb; }

    </style>

</head>

<body>

    <div class="container">

        <h1>EG2CENTER.COM</h1>

        <p>[ N-M-V LOCOMOTIVE CORE ACTIVE ]</p>

        <p>30-Year Provenance Reclaimed. Enter your credentials to request clearance. eg2 is ENTERNETGLOBAL</p>

        

        <!-- Intake form routes data to your private email routing node -->

        <form action="https://formspree.io" method="POST">

            <input type="email" name="email" placeholder="ENTER EMAIL ADDRESS" required>

            <input type="submit" value="REQUEST ACCESS LINK">

        </form>

    </div>

</body>

</html>