/* Form Container */
.form-container {
  max-width: 899px;
  margin: 40px auto;
  padding: 25px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.08);
  font-family: 'Poppins', sans-serif;
  animation: fadeInUp 0.6s ease;
}

/* Form Heading if any */
.form-container h2 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #2c3e50;
}

/* General Paragraph in Form (Django form.as_p) */
.form-container p {
  margin-bottom: 18px;
  font-size: 1rem;
  color: #444;
}

/* Labels */
.form-container label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #3498db;
}

/* Input, Textarea, File Upload */
.form-container input[type="text"],
.form-container input[type="number"],
.form-container input[type="tel"],
.form-container input[type="email"],
.form-container input[type="file"],
.form-container textarea,
.form-container select {
  width: 100%;
  padding: 12px 15px;
  border: 1.7px solid #dcdde1;
  border-radius: 10px;
  font-size: 1rem;
  background: #f8f9fa;
  transition: all 0.3s ease;
}

.form-container input:focus,
.form-container textarea:focus,
.form-container select:focus {
  border-color: #3498db;
  background: #fff;
  box-shadow: 0 0 6px rgba(52, 152, 219, 0.3);
  outline: none;
}

/* Textarea adjustments */
.form-container textarea {
  min-height: 100px;
  resize: vertical;
}

/* Submit Button */
.form-container button[type="submit"] {
  width: 100%;
  padding: 14px 0;
  margin-top: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(45deg, #ff7e5f, #feb47b);
  border: none;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0px 8px 15px rgba(255, 126, 95, 0.4);
  transition: all 0.3s ease;
}

.form-container button[type="submit"]:hover {
  background: linear-gradient(45deg, #feb47b, #ff7e5f);
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .form-container {
    max-width: 90%;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .form-container {
    padding: 15px;
    border-radius: 15px;
  }

  .form-container button[type="submit"] {
    font-size: 1rem;
    padding: 12px 0;
  }
}

/* Fade-in Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Membership Eligibility Section Styling */
.membership-eligibility {
  background-color: #f9f9f9; /* soft background */
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 40px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.membership-eligibility h2 {
  font-size: 1.6rem;
  color: #2a4d69;
  margin-bottom: 15px;
  border-left: 5px solid #2a4d69;
  padding-left: 10px;
}

.membership-eligibility ul {
  list-style: none; /* remove bullets */
  margin: 0;
  padding: 0;
}

.membership-eligibility ul li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="12" width="12" viewBox="0 0 20 20"><path fill="%232a4d69" d="M7.629 15.314l-5.657-5.657 1.414-1.415 4.243 4.243 9.192-9.192 1.415 1.414z"/></svg>') no-repeat left center;
  background-size: 14px 14px;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

.membership-eligibility ul li:last-child {
  margin-bottom: 0;
}

/* Membership Procedure Section Styling */
.membership-procedure {
  background-color: #eef7f1; /* light green tint */
  border: 1px solid #cde5d4;
  border-radius: 6px;
  padding: 40px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.membership-procedure h2 {
  font-size: 1.6rem;
  color: #227a3d;
  margin-bottom: 15px;
  border-left: 5px solid #227a3d;
  padding-left: 10px;
}

.membership-procedure ol {
  padding-left: 20px;
  margin-bottom: 15px;
}

.membership-procedure ol li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #333;
}

.membership-procedure .note {
  font-size: 0.95rem;
  color: #555;
  font-style: italic;
}
.payment-qrcode img {
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.09);
}
