/* Terminal-Theme passend zu reichenberg.ruhr */
* {
  box-sizing: border-box;
}
:root {
  --bg: #0b0a08;
  --surface: #15130f;
  --surface-2: #1c1a16;
  --border: #2a2823;
  --ink: #eee8db;
  --muted: #8a8579;
  --accent: oklch(72% 0.17 50);
  --accent-soft: color-mix(in oklch, oklch(72% 0.17 50) 16%, transparent);
}
html, body {
  padding: 0;
  margin: 0;
  min-width: 320px;
}
body {
  background: var(--bg);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
}
a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
label {
  cursor: pointer;
  color: var(--ink);
}
h1, h2, h3, h4 {
  font-weight: 600;
  letter-spacing: -0.02em;
}
h2::before {
  content: "/ ";
  color: var(--accent);
}
.section {
  margin-bottom: 45px;
}

input[type="text"], input[type="email"], input[type="password"], select {
  padding: 10px 14px;
  width: 100%;
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--border);
  border-radius: 4px;
  font: inherit;
}
input:focus {
  outline: none;
  border-color: var(--accent);
}
input:focus::placeholder {
  color: transparent;
}
input::placeholder {
  color: var(--muted);
}
input[disabled] {
  opacity: 0.5;
}
input[type="checkbox"] {
  accent-color: var(--accent);
}

.center { text-align: center; }
.right { text-align: right; }
.small { font-size: 0.875em; }
.error { color: #ff5722; }

.button {
  background: transparent;
  padding: 12px 26px;
  border-radius: 4px;
  border: 1px solid var(--accent);
  cursor: pointer;
  text-decoration: none;
  color: var(--accent);
  display: inline-block;
  min-width: 150px;
  font: inherit;
  font-size: 1em;
  text-align: center;
}
.button::before {
  content: "$ ";
}
.button:hover {
  background: var(--accent);
  color: var(--bg);
  text-decoration: none;
}
.button.button-outline {
  border-color: var(--border);
  color: var(--muted);
}
.button.button-outline:hover {
  border-color: var(--accent);
  background: transparent;
  color: var(--accent);
}

.container {
  margin: 60px auto 15px auto;
  max-width: 560px;
}

.wrap {
  background: var(--surface);
  padding: 36px 40px;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 14px;
  margin-bottom: 28px;
}
.header .logo img {
  width: auto;
  max-width: 150px;
}
/* Terminal-Sessionzeile statt Logo */
.term-session {
  font-size: 11px;
  color: var(--muted);
}
.term-session .item {
  white-space: nowrap;
}
.term-session a {
  color: var(--muted);
}
.term-session a:hover {
  color: var(--accent);
  text-decoration: none;
}
.term-session .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 6px;
}
.term-session .label {
  color: var(--ink);
}

.unsub-all {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.row {
  margin-bottom: 20px;
}
.lists {
  list-style-type: none;
  padding: 0;
}
.lists li {
  margin: 0 0 5px 0;
}
.lists .description {
  margin: 0 0 15px 0;
  font-size: 0.875em;
  line-height: 1.4;
  color: var(--muted);
  margin-left: 25px;
}
.form .nonce {
  display: none;
}
.form .captcha {
  margin-top: 30px;
}

.archive {
  list-style-type: none;
  margin: 25px 0 0 0;
  padding: 0;
}
.archive .date {
  display: block;
  color: var(--muted);
  font-size: 0.875em;
}
.archive li {
  margin-bottom: 15px;
}
.feed {
  margin-right: 15px;
}

.home-options {
  margin-top: 30px;
}
.home-options a {
  margin: 0 7px;
}

.pagination {
  margin-top: 30px;
  text-align: center;
}
.pg-page {
  display: inline-block;
  padding: 0 10px;
  text-decoration: none;
}
.pg-page.pg-selected {
  text-decoration: underline;
  font-weight: bold;
}

.login .submit {
  margin-top: 20px;
}
.login button {
  width: 100%;
  vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login button img {
  max-width: 24px;
  margin-right: 10px;
}
.login input[name=totp_code] {
  font-size: 2em;
  letter-spacing: 5px;
  text-align: center;
}

footer.container {
  text-align: center;
  color: var(--muted);
  font-size: 0.775em;
  margin-top: 30px;
  margin-bottom: 30px;
}
footer a {
  color: var(--muted);
  text-decoration: none;
}
footer a:hover {
  color: var(--accent);
}
footer .sep {
  margin: 0 6px;
  opacity: 0.5;
}

@media screen and (max-width: 650px) {
  .container {
    margin-top: 20px;
  }
  .wrap {
    margin: 0 10px;
    padding: 28px 22px;
    max-width: none;
  }
}
