/* ===========================
   Thank You Page – thankyou.css
   =========================== */

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: #f7fafc;
  color: #0f1b2d;
  line-height: 1.6;
  font-size: 18px;
  text-align: center;
}

.thankyou {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90vh;
  padding: 20px;
}

.thankyou__card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 40px 28px;
  max-width: 480px;
  box-shadow: 0 8px 28px rgba(15,27,45,0.08);
}

h1 {
  margin: 0 0 14px;
  color: #0b3b69;
  font-size: 36px;
  font-weight: 800;
}

p {
  margin: 0 0 14px;
}

.note {
  color: #64748b;
  font-size: 15px;
  margin-top: 12px;
}

/* ---- Buttons (reuse style from main) ---- */
.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.btn-primary {
  background: #f7b500;
  color: #1a1a1a;
}

.btn-primary:hover {
  background: #c68f00;
  color: #111;
}

.btn-lg {
  font-size: 20px;
  padding: 16px 26px;
  margin-top: 14px;
  display: block;
}

/* Footer */
.footer {
  padding: 24px;
  font-size: 14px;
  color: #94a3b8;
  background: #0f172a;
}

