.card { max-width: 440px; margin: 8vh auto; padding: 24px; border: 1px solid #e5e5e5; border-radius: 12px; background: #fff; }
.brand { text-align:center; margin-bottom: 12px; }
h2 { margin: 0 0 8px; }
label { display:block; font-size: 14px; margin: 12px 0 6px; }
input { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 8px; }
button { width: 100%; padding: 10px; border: 0; border-radius: 8px; background: black; color: white; cursor: pointer; margin-top: 14px; }
.row { display:flex; gap:8px; }
.muted { font-size: 12px; color:#555; text-align:center; margin-top: 8px; }
.error { color:#b00020; min-height:1em; font-size: 13px; margin-top: 8px; }
.toggle { background: transparent; color: #333; border: 1px solid #ccc; }
.hidden { display:none; }
.mt-10 { margin-top:10px; }

.top-right-link {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 10;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  background: #fff;
  color: #111;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-ghost:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
}

@media (max-width: 640px) {
  .top-right-link {
    position: static;
    display: block;
    width: fit-content;
    margin: 16px auto 0;
  }
}

.consent-block { margin-top: 12px; display: grid; gap: 8px; text-align: left; font-size: 12px; color: #444; }
.consent-item { display: flex; gap: 8px; align-items: flex-start; }
.consent-item input { width: auto; margin-top: 2px; }
.consent-item label { margin: 0; font-size: 12px; display: inline; }
.consent-item a { color: #111; text-decoration: underline; }

