/* Laevitas public pages - design tokens mirrored from the laevitas.ch
   landing (Inter, primary #1DA2B4, dark navy scale #010e1f/#001b3d/#002347).
   Applied to Listmonk via Settings > Appearance > Public custom CSS; this
   file is the versioned copy. */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --lvt-primary: #1da2b4;
  --lvt-primary-dark: #17858f;
  --lvt-bg: #010e1f;
  --lvt-card: #001b3d;
  --lvt-card-2: #002347;
  --lvt-border: #0e2d55;
  --lvt-text: #f1f5f9;
  --lvt-muted: #94a3b8;
  --lvt-faint: #64748b;
}

body {
  font-family: "Inter", Helvetica, Arial, sans-serif;
  background-color: var(--lvt-bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(29, 162, 180, 0.12), transparent),
    radial-gradient(ellipse 60% 40% at 90% 110%, rgba(107, 177, 203, 0.06), transparent);
  background-attachment: fixed;
  color: var(--lvt-text);
  line-height: 1.6;
}

/* Centered card, landing-style */
.container.wrap {
  max-width: 560px;
  margin: 6vh auto;
  padding: 40px 44px;
  background: linear-gradient(180deg, var(--lvt-card) 0%, rgba(0, 27, 61, 0.55) 100%);
  border: 1px solid var(--lvt-border);
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

header.header {
  margin-bottom: 28px;
}
header.header .logo img {
  max-height: 36px;
  width: auto;
}

h1, h2, h3, h4 {
  color: var(--lvt-text);
  font-weight: 700;
  letter-spacing: -0.01em;
}
section > h2 {
  font-size: 1.55rem;
  margin-bottom: 4px;
}
p, li {
  color: var(--lvt-muted);
}
a {
  color: var(--lvt-primary);
  text-decoration: none;
}
a:hover {
  color: #4fc3d1;
}
hr {
  border: 0;
  border-top: 1px solid var(--lvt-border);
}

label {
  color: var(--lvt-text);
  font-weight: 500;
  font-size: 0.9rem;
}

input[type="text"], input[type="email"], select, textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(1, 14, 31, 0.7);
  color: var(--lvt-text);
  border: 1px solid var(--lvt-border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
input[type="text"]::placeholder, input[type="email"]::placeholder {
  color: var(--lvt-faint);
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  outline: none;
  border-color: var(--lvt-primary);
  box-shadow: 0 0 0 3px rgba(29, 162, 180, 0.18);
}

/* The single-list checkbox block reads as a quiet chip */
ul.lists {
  list-style: none;
  margin: 18px 0;
  padding: 14px 16px;
  background: rgba(0, 35, 71, 0.45);
  border: 1px solid var(--lvt-border);
  border-radius: 10px;
}
ul.lists h2 {
  display: none; /* "Lists" heading is noise with a single list */
}
ul.lists li {
  color: var(--lvt-text);
}
ul.lists label {
  font-weight: 600;
}
ul.lists .description {
  margin: 4px 0 0 24px;
  font-size: 0.85rem;
  color: var(--lvt-muted);
}
input[type="checkbox"] {
  accent-color: var(--lvt-primary);
}

button, input[type="submit"], .button {
  display: inline-block;
  width: 100%;
  padding: 13px 24px;
  margin-top: 10px;
  background: var(--lvt-primary);
  color: #ffffff;
  border: 0;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.3s;
  box-shadow: 0 0 20px rgba(29, 162, 180, 0.25);
}
button:hover, input[type="submit"]:hover, .button:hover {
  background: var(--lvt-primary-dark);
  box-shadow: 0 0 36px rgba(29, 162, 180, 0.5);
}

/* Archive listing */
.archive h3, .archive .title {
  font-size: 1.1rem;
}
.archive li {
  padding: 12px 0;
  border-bottom: 1px solid var(--lvt-border);
}
.archive .date {
  color: var(--lvt-faint);
  font-size: 0.85rem;
}

.footer, footer {
  margin-top: 28px;
  color: var(--lvt-faint);
  font-size: 0.8rem;
}
.footer a, footer a {
  color: var(--lvt-faint);
  text-decoration: underline;
}
