/* Global base styles – apply on all pages (index, register, login, dashboard) */

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111827;
 
}

/* Links */

a {
  color: #2563eb;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Generic container */

.container {
  max-width: 1100px;
  margin: 0 auto;
  width: 90%;
}

/* Generic primary button (if needed) */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 25px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 16px 35px rgba(37, 99, 235, 0.4);
  transform: translateY(-1px);
}

/* Simple section spacing helpers if you use them on index */

.section {
  padding: 3rem 0;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: #6b7280;
}


















.landing-page {
  min-height: 100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(180deg,#eaf4ff,#ffffff);
  font-family: system-ui;
}

.landing-container {
  text-align:center;
  max-width:600px;
}

.brand-title {
  font-size:2.5rem;
  color:#1e3a8a;
}

.brand-subtitle {
  margin:1rem 0 2rem;
  color:#475569;
}

.landing-buttons {
  display:flex;
  gap:1rem;
  justify-content:center;
}

.primary-btn {
  padding:0.8rem 1.6rem;
  border:none;
  border-radius:12px;
  background:#2563eb;
  color:white;
  font-size:1rem;
}

.secondary-btn {
  padding:0.8rem 1.6rem;
  border-radius:12px;
  background:white;
  border:1px solid #2563eb;
  color:#2563eb;
}

.popup {
  position:fixed;
  bottom:30px;
  left:50%;
  transform:translateX(-50%);
  background:#dcfce7;
  color:#166534;
  padding:1rem 1.4rem;
  border-radius:12px;
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.hidden { display:none; }














