/* Base */
:root {
  --text: #101828;
  --muted: #475467;
  --border: #D0D5DD;
  --brand: #1570EF;
  --bg: #f8fafc;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope","Inter",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px 16px;
}

.card {
  width: min(560px, 100%);
  background: #fff;
  border: 1px solid #eaecf0;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(16, 24, 40, 0.08);
  padding: 22px 20px;
}

.header {
  padding: 6px 0 14px;
}

.logo {
  height: 56px;
  width: auto;
  display: block;
}

.headline {
  margin: 6px 0 6px;
  max-width: 28ch;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-size: 28px;
}

.subhead {
  margin: 10px 0 18px;
  color: var(--muted);
  font-family: "Inter","Manrope",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

/* Form */
.listmonk-form {
  margin-top: 6px;
}

.label {
  display: block;
  font-size: 13px;
  margin: 12px 0 6px;
  color: #344054;
  font-family: "Inter","Manrope",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

.listmonk-form input[type="email"],
.listmonk-form input[type="text"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  outline: none;
}

.listmonk-form input[type="email"]:focus,
.listmonk-form input[type="text"]:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(21,112,239,0.15);
}

/* CAPTCHA */
altcha-widget {
  display: block;
  margin: 16px 0 18px;
}

/* Button */
.button {
  width: 100%;
  margin-top: 10px;
  padding: 12px 18px;
  border: none;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(21,112,239,0.25);
}

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

.fineprint {
  margin: 12px 0 0;
  color: #667085;
  font-size: 12px;
  font-family: "Inter","Manrope",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

.status {
  margin: 10px 0 0;
  font-size: 13px;
  color: #344054;
  font-family: "Inter","Manrope",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

