body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0b1020;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/*=======================================================
  LOGIN CONTAINER
=======================================================*/

.container {
  width: 380px;
  background: #151b2e;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

h2 {
  text-align: center;
  margin-bottom: 20px;
}

input {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border-radius: 6px;
  border: none;
  outline: none;
  box-sizing: border-box;
}

button {
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  border-radius: 6px;
  border: none;
  background: #22c55e;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s ease;
}

button:hover {
  opacity: 0.92;
}

.toggle {
  margin-top: 15px;
  text-align: center;
  color: #93c5fd;
  cursor: pointer;
}

.message {
  margin-top: 10px;
  text-align: center;
  color: #f87171;
}
/* ==========================
SIGNUP PLAN SELECTION
========================== */

.signup-plans {
  margin: 20px 0;
}

.signup-plans h3 {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 1rem;
}

.plan-options {
  display: grid;
  gap: 12px;
}

.plan-card {
  display: block;
  padding: 15px;
  border: 1px solid rgba(0, 255, 200, 0.25);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: 0.2s ease;
}

.plan-card input {
  display: none;
}

.plan-card h4 {
  margin: 0 0 6px;
  color: #00ffd0;
}

.plan-card p {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 0.9rem;
}

.plan-card small {
  color: #aaa;
}

.plan-card.selected,
.plan-card:hover {
  border-color: #00ffd0;
  background: rgba(0, 255, 200, 0.08);
}
/*=======================================================
  LEGAL DISCLAIMER MODAL
=======================================================*/

.legal-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.legal-box {
  background: #0f172a;
  color: #ffffff;
  max-width: 650px;
  width: 90%;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  font-family: Arial, sans-serif;
}

.legal-box h2 {
  margin-top: 0;
  color: #38bdf8;
}

.legal-box p {
  font-size: 14px;
  line-height: 1.6;
  color: #cbd5e1;
}

.legal-check {
  display: block;
  margin: 20px 0;
  font-size: 14px;
  color: #ffffff;
}

.legal-check input {
  margin-right: 8px;
  width: auto;
}

#legalAcceptBtn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 10px;
  background: #38bdf8;
  color: #020617;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

#legalAcceptBtn:disabled {
  background: #475569;
  color: #94a3b8;
  cursor: not-allowed;
}