/* OptiSigns Trust Center — shared styles. Simple, professional, no framework. */
:root {
  --blue: #1a56db;
  --blue-dark: #1e429f;
  --navy: #0f1f3d;
  --ink: #1f2a44;
  --muted: #5b6b85;
  --line: #dde4ef;
  --bg: #f4f7fb;
  --ok: #0e9f6e;
  --warn: #c27803;
  --err: #e02424;
  --radius: 10px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

header.site {
  background: var(--navy);
  color: #fff;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
header.site .logo {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.2px;
  color: #fff;
  text-decoration: none;
}
header.site .logo span { color: #6ea8ff; }
header.site .tag {
  font-size: 13px;
  color: #aebad1;
  border-left: 1px solid #2c3e63;
  padding-left: 10px;
}

main {
  max-width: 620px;
  margin: 48px auto 64px;
  padding: 0 20px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 1px 3px rgba(15, 31, 61, 0.06);
  padding: 32px;
}

h1 { font-size: 24px; margin: 0 0 8px; color: var(--navy); }
p.lede { color: var(--muted); margin: 0 0 24px; }

label { display: block; font-weight: 600; font-size: 14px; margin: 16px 0 6px; }
input[type="text"], input[type="email"], textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
input:focus, textarea:focus { outline: 2px solid var(--blue); outline-offset: 0; border-color: var(--blue); }
textarea { min-height: 88px; resize: vertical; }

.agree {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 20px 0 16px;
  font-size: 14px;
  color: var(--ink);
}
.agree input { margin-top: 3px; }

.turnstile-slot { margin: 8px 0 20px; min-height: 65px; }

button.primary {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  border: 0;
  border-radius: 6px;
  padding: 12px 22px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
button.primary:hover { background: var(--blue-dark); }
button.primary:disabled { background: #9db4e8; cursor: not-allowed; }

a.button {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  padding: 12px 22px;
  font-weight: 600;
}
a.button:hover { background: var(--blue-dark); }

.notice { border-radius: 8px; padding: 14px 16px; font-size: 15px; margin-top: 8px; }
.notice.ok { background: #eefaf4; border: 1px solid #b7e6d2; color: #046c4e; }
.notice.warn { background: #fdf6e3; border: 1px solid #f0dda4; color: #8a5b06; }
.notice.err { background: #fdf0f0; border: 1px solid #f5c2c2; color: #9b1c1c; }

.field-error { color: var(--err); font-size: 13px; margin-top: 4px; }
.hidden { display: none; }
.fineprint { color: var(--muted); font-size: 13px; margin-top: 20px; }
.center { text-align: center; }

footer.site {
  max-width: 620px;
  margin: 0 auto 40px;
  padding: 0 20px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}
footer.site a { color: var(--muted); }
