body {
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
}

.card {
  max-width: 420px;
  width: 90%;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  margin: 0 16px;
  position: relative;
  z-index: 10;
}

@media (max-width: 400px) {
  .card {
    margin: 0 12px;
    padding: 24px 16px;
  }
}

.logo {
  width: 180px;
  margin-bottom: 20px;
}

h1, h2 {
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #001d3d;
}

p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 25px;
}

.primary-btn {
  font-family: 'Poppins', sans-serif;
  background-color: #00478d;
  color: white;
  padding: 14px 24px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  max-width: 300px;
}

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

.store-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.store-buttons img {
  height: 50px;
  object-fit: contain;
}

.bg-circle {
  position: fixed;
  z-index: 0;
  width: 33vw;
  height: auto;
  max-width: 400px;
  opacity: 1;
  pointer-events: none;
}

.top-left {
  top: 0;
  right: 0;
  transform: rotate(180deg);
}

.bottom-right {
  bottom: 0;
  left: 0;
}
