html, body { height: 100%; }

body{
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif !important;

  /* Light orange background */
  background:
    radial-gradient(900px 600px at 20% 20%, rgba(255, 255, 255, 0.55), transparent 60%),
    radial-gradient(900px 600px at 85% 30%, rgba(255, 255, 255, 0.35), transparent 55%),
    linear-gradient(180deg, #ffe2c6, #ffd2a3) !important;

  color: #1b1b1b;
}

/* Card */
.landing-card{
  background: rgba(255,255,255,0.70) !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  border-radius: 22px !important;
  box-shadow: 0 18px 60px rgba(0,0,0,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Logo spacing (tighter) */
.landing-logo{
  width: min(320px, 80%);
  height: auto;
  display: block;
  margin: 0 auto 1rem auto !important; /* reduced space below */
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.12));
}

/* Softer body text */
.landing-muted{
  color: rgba(27,27,27,0.78) !important;
}

/* Links */
.landing-link{
  color: #1b1b1b;
  text-decoration: none;
  border-bottom: 1px solid rgba(27,27,27,0.25);
  padding-bottom: 2px;
}

.landing-link:hover{
  border-bottom-color: rgba(27,27,27,0.55);
}

/* Buttons */
.landing-btn{
  background: #ff7a3d !important;       /* warm orange CTA */
  border-color: #ff7a3d !important;
  color: #ffffff !important;
  font-weight: 700 !important;
}

.landing-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(255, 122, 61, 0.25);
}

.landing-btn-outline{
  font-weight: 700 !important;
}
