<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta name="robots" content="noindex, nofollow">
  <title>Sign in</title>
  <style>
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      background: #ffffff;
      color: #1a1a1a;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      -webkit-font-smoothing: antialiased;
    }
    .card {
      max-width: 400px;
      width: 100%;
      background: #ffffff;
      padding: 40px 36px;
      border-radius: 16px;
      box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
      border: 1px solid #eaecef;
    }
    h1 {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 8px;
      color: #0f172a;
    }
    .sub {
      color: #64748b;
      font-size: 14px;
      margin-bottom: 24px;
      line-height: 1.5;
    }
    label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: #475569;
      margin-bottom: 8px;
    }
    input[type="password"] {
      width: 100%;
      padding: 12px 14px;
      border: 1px solid #d4d8de;
      border-radius: 10px;
      font-size: 15px;
      font-family: inherit;
      margin-bottom: 16px;
      background: #ffffff;
      color: #0f172a;
    }
    input[type="password"]:focus {
      outline: none;
      border-color: #ff7e00;
      box-shadow: 0 0 0 3px rgba(255, 126, 0, 0.12);
    }
    button {
      width: 100%;
      background: #ff7e00;
      color: white;
      border: 1px solid transparent;
      padding: 13px 24px;
      font-size: 15px;
      font-weight: 600;
      border-radius: 10px;
      cursor: pointer;
    }
    button:hover { background: #e67000; }
    .error {
      background: #fef2f2;
      color: #b91c1c;
      padding: 10px 14px;
      border-radius: 8px;
      font-size: 13px;
      margin-bottom: 16px;
      border: 1px solid #fecaca;
    }
  </style>
</head>
<body>
  <div class="card">
    <h1>Site password</h1>
    <p class="sub">This site is private. Enter the password to continue.</p>
    
    <form method="POST" action="/api/login" autocomplete="off">
      <label for="password">Password</label>
      <input type="password" id="password" name="password" autofocus required autocomplete="current-password">
      <button type="submit">Continue</button>
    </form>
  </div>
</body>
</html>