/* ===== REGISTER PAGE ONLY (MATCHES INDEX) ===== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Segoe UI", Helvetica, Arial, sans-serif;
  background-image: url("/static/background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Top bar (same as index) */
.top-bar {
  height: 72px;
  background: white;
  display: flex;
  align-items: center;
  padding-left: 16px;
  padding-right: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.top-left {
  display: flex;
  align-items: center;
}

.top-logo {
  height: 44px;
  cursor: pointer;
}

/* Center content (same as index) */
.landing-wrapper {
  height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-card {
  background: white;
  width: 520px;
  padding: 72px 64px;
  border-radius: 32px;
  text-align: center;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
}

.landing-logo {
  width: 320px;
  margin-bottom: 44px;
}

/* Buttons (same vibe as index button) */
.btn-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.landing-btn {
  display: inline-block;
  background-color: #19577a;
  color: white;
  text-decoration: none;
  padding: 18px 64px;
  font-size: 16px;
  font-weight: 800;
  border-radius: 999px;
}

.btn-wide {
  width: 260px;
  text-align: center;
}

.landing-btn:hover {
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 600px) {
  .landing-card {
    width: 92vw;
    padding: 56px 28px;
    border-radius: 26px;
  }

  .landing-logo {
    width: 260px;
    margin-bottom: 36px;
  }

  .btn-wide {
    width: 220px;
  }
}
