/* Account-deletion page. Deliberately framework-free and self-contained so it
   can be hosted anywhere as a static page. Body/text stays >= 16px. */
:root {
  --brand: #1773c0;
  --brand-deep: #0b5394;
  --accent: #2f9fe0;
  --danger: #c0271a;
  --danger-deep: #9c1d12;
  --ink: #14202b;
  --muted: #5b6b78;
  --line: #dde7f0;
  --card: #ffffff;
  --ok: #1f8a4c;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: linear-gradient(160deg, #f2f8fd 0%, #e6f2fb 55%, #dcebf7 100%);
  min-height: 100vh;
}

body {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 32px 16px 64px;
}

.card {
  width: 100%;
  max-width: 640px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(11, 83, 148, 0.12);
  padding: 28px;
}

.head { text-align: center; margin-bottom: 8px; }

.mark {
  font-size: 46px;
  line-height: 1;
  margin-bottom: 8px;
}

h1 {
  font-size: 26px;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--brand-deep);
}

h2 {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--brand);
}

.sub { font-size: 16px; color: var(--muted); margin: 0 auto; max-width: 52ch; }

.block {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

p { font-size: 16px; margin: 0 0 12px; }
.muted { color: var(--muted); font-size: 15px; }

ul { margin: 0 0 12px; padding-left: 22px; }
li { font-size: 16px; margin-bottom: 6px; }

ul.deleted li { margin-bottom: 8px; }

.gbtn { display: flex; justify-content: center; min-height: 44px; margin: 14px 0 4px; }

.signed-as { font-size: 16px; }

.confirm-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  margin: 14px 0 18px;
  cursor: pointer;
}
.confirm-row input { width: 20px; height: 20px; margin-top: 1px; flex: none; }

button {
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  padding: 13px 20px;
  cursor: pointer;
  font-family: inherit;
}
button:disabled { opacity: 0.5; cursor: not-allowed; }

.danger { background: var(--danger); color: #fff; width: 100%; }
.danger:not(:disabled):hover { background: var(--danger-deep); }

.ghost {
  background: transparent;
  color: var(--muted);
  width: 100%;
  margin-top: 10px;
  font-weight: 600;
}
.ghost:hover { color: var(--ink); }

.ok {
  font-size: 17px;
  font-weight: 700;
  color: var(--ok);
  background: #eaf7ef;
  border: 1px solid #bfe6cd;
  border-radius: 12px;
  padding: 14px 16px;
}

.error {
  font-size: 15px;
  color: var(--danger-deep);
  background: #fdeceb;
  border: 1px solid #f5cdc9;
  border-radius: 10px;
  padding: 12px 14px;
  margin-top: 12px;
}

a { color: var(--accent); }

.hidden { display: none !important; }

@media (max-width: 480px) {
  .card { padding: 22px 18px; }
  h1 { font-size: 23px; }
}
