* {
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

:root {
  --brand-purple: #741176;
  --brand-yellow: #ffc800;
  --brand-white: #f1f1f1;
  --text-dark: #2a1230;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background-image:
    linear-gradient(160deg, rgba(50, 8, 51, 0.52), rgba(116, 17, 118, 0.68)),
    url("/assets/images/zuttel-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-dark);
}

.card {
  width: min(420px, 92vw);
  background: rgba(241, 241, 241, 0.93);
  border-radius: 18px;
  padding: 24px;
  border: 2px solid rgba(255, 200, 0, 0.45);
  box-shadow: 0 20px 45px rgba(37, 6, 37, 0.4);
  backdrop-filter: blur(3px);
}

.card.wide {
  width: min(980px, 95vw);
}

h1 {
  margin: 0 0 8px;
  font-size: 1.4rem;
  color: var(--brand-purple);
}

.brand-title {
  display: block;
  width: 100%;
  margin: 0 auto 8px;
  text-align: center;
}

.card .subtitle {
  text-align: center;
}

.subtitle {
  margin: 0 0 20px;
  color: #4b2553;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--brand-purple);
}

input,
select,
button {
  width: 100%;
  border-radius: 12px;
  font-size: 1rem;
}

input,
select {
  padding: 12px;
  margin-bottom: 16px;
  border: 1px solid #c5afd0;
  background: #ffffff;
}

input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
  font-weight: 500;
  color: #4b2553;
}

.check-row span {
  line-height: 1.3;
  font-size: 0.9rem;
}

button {
  padding: 12px 16px;
  border: none;
  background: var(--brand-yellow);
  color: var(--brand-purple);
  font-weight: 700;
  cursor: pointer;
  transition: filter 0.2s ease;
}

button:hover {
  filter: brightness(0.95);
}

button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.hint {
  margin-top: 16px;
  color: #7f1d1d;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

th,
td {
  text-align: left;
  padding: 8px;
  border-bottom: 1px solid #e2e8f0;
}

th {
  color: var(--brand-purple);
}
