/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@600&family=Poppins:wght@400;600&display=swap');

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

.container {
  max-width: 480px;
  width: 90%;
  padding: 40px 24px;
  text-align: center;
  box-sizing: border-box;
}

.logo {
  margin-bottom: 20px;
}

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

.title {
  font-size: 24px;
  font-weight: 700;
  color: #3c3f4c;
  margin-bottom: 32px;
}

/* Plans container */
.plans-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Plan group styling */
.plan-group {
  padding: 20px;
  border-radius: 16px;
  border: 2px solid;
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
}

.premium-group {
  border-color: #3edaf8;
  background: linear-gradient(135deg, rgba(62,218,248,0.05), rgba(62,218,248,0.02));
}

.gold-group {
  border-color: #f4d40f;
  background: linear-gradient(135deg, rgba(244,212,15,0.05), rgba(244,212,15,0.02));
}

.group-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 12px 0;
  text-align: center;
}

.group-subtitle {
    font-size: 14px;
    margin: 8px 0;
    color: #666;
}

.group-sub-subtitle {
    font-size: 12px;
    margin: 0 0 16px 0;
    color: #888;
    font-style: italic;
    font-weight: bold;
}

.premium-group .group-title {
  color: #3edaf8;
}

.gold-group .group-title {
  color: #f4d40f;
}

/* Plan buttons */
.plan-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-button {
  font-size: 16px;
  padding: 12px 20px;
  border: 2px solid #c4cad8;
  background-color: white;
  color: #3c3f4c;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  font-weight: 500;
  box-sizing: border-box;
}

/* Premium button styling */
.premium-button:hover,
.premium-button:focus {
  background-color: #3edaf8;
  color: white;
  border-color: #3edaf8;
  font-weight: 600;
}

/* Gold button styling */
.gold-button:hover,
.gold-button:focus {
  background-color: #f4d40f;
  color: white;
  border-color: #f4d40f;
  font-weight: 600;
}

/* Default hover for backwards compatibility */
.plan-button:hover,
.plan-button:focus {
  background-color: #36d6a0;
  color: white;
  border-color: #36d6a0;
  font-weight: 600;
}

/* Form input */
.input {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  border: 2px solid #c4cad8;
  border-radius: 16px;
  outline: none;
  margin-bottom: 24px;
  font-family: 'Poppins', sans-serif;
  color: #333;
  box-sizing: border-box;
}

.input::placeholder {
  color: #999;
}

/* Submit button */
.button {
  width: 100%;
  font-size: 16px;
  padding: 16px;
  background-color: white;
  color: #3c3f4c;
  border: 2px solid #c4cad8;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  box-sizing: border-box;
}

.button:hover,
.button:focus {
  background-color: #36d6a0;
  color: white;
  border-color: #36d6a0;
}

/* Messaging */
.message {
  margin-top: 20px;
  font-size: 14px;
  color: #3c3f4c;
}

.message.success {
  color: #5cb85c;
}

.message.error {
  color: #d9534f;
}

/* Divider (optional use) */
.divider {
  margin: 30px 0;
  border: none;
  border-top: 1px solid #dcdcdc;
}

/* Responsive */
@media (max-width: 480px) {
  .container {
    padding: 20px 10px;
  }

  .input,
  .button,
  .plan-button {
    font-size: 14px;
    padding: 12px 14px;
  }

  .logo img {
    height: 36px;
  }

  .title {
    font-size: 20px;
  }

  .plans-container {
    gap: 20px;
  }

  .plan-group {
    padding: 16px;
  }



  .plan-section {
    gap: 10px;
  }
}
