.checkout-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 50px 0;
  background:
    radial-gradient(
      circle at top right,
      rgba(139, 92, 246, 0.18),
      transparent 32%
    ),
    linear-gradient(180deg, #fff, #f8fafc);
}

.checkout-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.1);
}

.checkout-logo {
  max-width: 220px;
  margin-bottom: 24px;
}

.plan-summary {
  background: #ede9fe;
  border: 1px solid #ddd6fe;
  border-radius: 22px;
  padding: 24px;
}

.plan-price {
  font-size: 2.4rem;
  font-weight: 950;
  color: #6d28d9;
}

.form-control {
  border-radius: 14px;
  padding: 13px 15px;
}

.form-label {
  font-weight: 800;
}
.checkout-page {
  position: relative;
  overflow: hidden;
}

.checkout-page::before,
.checkout-page::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  opacity: 0.55;
  animation: float 7s ease-in-out infinite;
  z-index: 0;
}

.checkout-page::before {
  width: 280px;
  height: 280px;
  background: #ddd6fe;
  right: -80px;
  top: 120px;
}

.checkout-page::after {
  width: 190px;
  height: 190px;
  background: #bae6fd;
  left: -70px;
  bottom: 90px;
  animation-delay: 1.5s;
}

.checkout-page .container {
  position: relative;
  z-index: 2;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-22px);
  }
}
