/* === CBDUX – Black + Spring Green skin === */
:root {
  --cbdux-black: #0a0d0c;
  --cbdux-panel: #111827;
  --cbdux-spring: #00ff7f;
  --cbdux-spring-dark: #00d76b;
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
}

body {
  background: var(--cbdux-black);
  color: var(--text-main);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.container.wrap {
  max-width: 600px;
  margin: 60px auto;
  padding: 24px;
  background: var(--cbdux-panel);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0,0,0,.45);
}

/* Logo */
.header .logo img {
  height: 64px;
  filter: drop-shadow(0 0 4px rgba(0,255,127,.3));
}

/* Nadpis */
h1, h2 {
  color: #fff;
  font-weight: 700;
  margin-top: 0;
}

/* Form */
.form label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--text-muted);
}

.form input[type="email"],
.form input[type="text"] {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #1f2937;
  background: #0c1115;
  color: #fff;
  font-size: 15px;
  margin-bottom: 14px;
}

.form input:focus {
  outline: none;
  border-color: var(--cbdux-spring);
  box-shadow: 0 0 0 3px rgba(0,255,127,.2);
}

/* Seznamy */
.lists {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.lists h2 {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.lists li {
  margin: 10px 0;
}
.lists label {
  color: #fff;
  font-size: 15px;
}
.lists .description {
  font-size: 13px;
  color: var(--text-muted);
  margin: 4px 0 0 24px;
}

/* Tlačítko */
.button {
  width: 100%;
  padding: 12px 18px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--cbdux-spring), var(--cbdux-spring-dark));
  color: #05120a;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: transform .05s ease, filter .2s ease;
}
.button:hover { filter: brightness(1.05); }
.button:active { transform: translateY(1px); }

/* Footer */
footer {
  margin-top: 32px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}
footer a { color: var(--cbdux-spring); }
