/* Stil der Kennwortseite der Vorschau-Sperre.
   Eigene Datei, weil die Content-Security-Policy der Seite
   (style-src 'self') keinen <style>-Block im Dokument erlaubt.
   Sie ist in der .htaccess von der Sperre ausgenommen, sonst
   bekaeme der Browser statt des Stils wieder die Kennwortseite. */
  :root { color-scheme: dark; }
  * { box-sizing: border-box; }
  body {
    margin: 0; min-height: 100vh; display: grid; place-items: center;
    padding: 24px; background: #1f1a14; color: #f5f1e8;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  }
  .kasten { width: 100%; max-width: 340px; text-align: center; }
  .marke { font-family: Georgia, "Times New Roman", serif; font-size: 44px; letter-spacing: .01em; margin: 0 0 6px; font-weight: 400; }
  .marke sup { font-size: .3em; vertical-align: super; }
  .satz { margin: 0 0 32px; font-size: 14px; line-height: 1.5; color: rgba(245,241,232,.62); }
  label { display: block; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(245,241,232,.62); margin-bottom: 10px; }
  input {
    width: 100%; padding: 13px 16px; font-size: 17px; text-align: center;
    color: #f5f1e8; background: rgba(245,241,232,.06);
    border: 1px solid rgba(245,241,232,.22); border-radius: 8px;
  }
  input:focus { outline: 2px solid #c1552a; outline-offset: 2px; }
  button {
    width: 100%; margin-top: 12px; padding: 13px 16px; font-size: 15px; font-weight: 600;
    color: #1f1a14; background: #f5f1e8; border: 0; border-radius: 80px; cursor: pointer;
  }
  button:hover { background: #fff; }
  .fehler { margin-top: 16px; font-size: 14px; color: #e98b62; }
  .fuss { margin-top: 36px; font-size: 12px; color: rgba(245,241,232,.38); }
