<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Institutional Portal | Skytexla</title>
    <meta name="robots" content="noindex, nofollow">
    <link rel="stylesheet" href="style.css">
    <link rel="icon" type="image/svg+xml" href="assets/favicon.svg">
    <style>
        body {
            background: var(--color-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100vh;
            margin: 0;
            font-family: var(--font-family, sans-serif);
        }
        .gateway-box {
            background: var(--color-surface);
            border: 1px solid var(--color-border);
            padding: var(--space-12) var(--space-8);
            border-radius: var(--radius-2xl);
            max-width: 450px;
            width: 100%;
            text-align: center;
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        }
        .gateway-logo {
            margin-bottom: var(--space-8);
            display: flex;
            justify-content: center;
        }
        .gateway-title {
            font-size: var(--text-2xl);
            font-weight: 800;
            margin-bottom: var(--space-2);
            color: var(--color-text);
        }
        .gateway-desc {
            color: var(--color-text-muted);
            font-size: var(--text-sm);
            margin-bottom: var(--space-8);
            line-height: 1.6;
        }
        .gateway-input {
            width: 100%;
            padding: 16px 24px;
            background: var(--color-bg);
            border: 1px solid var(--color-border);
            border-radius: 9999px;
            color: var(--color-text);
            font-size: var(--text-base);
            margin-bottom: var(--space-4);
            transition: all 0.2s ease;
            box-sizing: border-box;
            outline: none;
        }
        .gateway-input:focus {
            border-color: var(--color-accent);
            box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
        }
        .gateway-error {
            color: #ef4444;
            font-size: var(--text-sm);
            margin-top: var(--space-4);
            font-weight: 500;
        }
    </style>
</head>
<body>
    <div class="gateway-box gs-fade-up">
        <div class="gateway-logo">
            <svg viewBox="0 0 175 40" style="height: 40px; width: auto;" xmlns="http://www.w3.org/2000/svg">
                <rect x="10" y="10" width="16" height="16" fill="var(--color-accent)" />
                <rect x="16" y="16" width="16" height="16" fill="none" stroke="var(--color-success)" stroke-width="2" />
                <text x="45" y="28" font-family="Inter, sans-serif" font-size="22" font-weight="700" letter-spacing="0.05em" fill="var(--color-text)">SKYTEXLA</text>
            </svg>
        </div>
        <h2 class="gateway-title">Institutional Portal</h2>
        <p class="gateway-desc">This is a restricted institutional environment. Please provide your access credential to enter the portal.</p>
        <form method="POST" action="">
            <input type="password" name="password" class="gateway-input" placeholder="Access Credential" required autofocus>
            <button type="submit" class="btn btn-primary" style="width: 100%; justify-content: center;">Access Portal</button>
        </form>
            </div>
</body>
</html>
