body {
  font-family: Arial, sans-serif;
  margin: 20px;
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  /*justify-content: center; */
}

.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 100vh;
  width: 100%;
}

.title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.title-logo {
  max-width: 50px;
  height: auto;
  display: block;
}

input[type="email"], button {
  width: 300px;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  background-color: #007BFF;
  color: white;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}

#paymentForm {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;

}

.razorpay-iframe {
  margin-top: 20px;
  max-width: 100%;
  width: 100vh;
  height: 810px;
  border: none;
}

.spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

.spinner-circle {
  width: 50px;
  height: 50px;
  border: 6px solid rgba(0, 0, 0, 0.1);
  border-top: 6px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.footer {
  background-color: #f9f9f9;
  padding: 20px 40px;
  align-items: center;
  border-top: 1px solid #e0e0e0; /* Subtle border */
  font-family: Arial, sans-serif;
  position: fixed;
  bottom: 0;
  width: 100vw;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  width: 100vw;
  margin: 0 auto;
  padding: 0 20px 0 20px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 5px;
  color: #333; /* Dark text for good contrast */
}

.footer-left p {
  margin: 0;
  text-align: left;
  font-size: 14px; /* Smaller font for less prominent text */
  color: #666; /* Subtle text color for copyright */
}

.footer-logo {
  max-width: 50px;
  height: auto;
  display: block;
}

/* Right Section */
.footer-right {
  text-align: right;
}

.footer-right h4 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.footer-right a {
  text-decoration: none;
  color: #0000EE; /* Default link color */
  font-size: 14px;
}

.footer-right p {
  margin: 5px 0 0 0;
  font-size: 14px;
  color: #333;
}

.footer-link-space {
  margin: 0 8px;
  font-size: 20px;
  color: gray;
  line-height: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {

  .container {
    text-align: center;
    max-width: 100vh;
    width: 100%;
  }

  .title {
    flex-direction: column;
    gap: 10px;
  }

  input[type="email"], button {
    width: 90%;
  }

  .razorpay-iframe {
    max-width: 100%;
  }

  .footer-content {
    max-width: 100vh;
    width: auto;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left {
    align-items: center;
    text-align: center;
  }

  .footer-right {
    text-align: center;
  }
}

@media (max-width: 480px) {
  body {
    margin: 10px;
  }

  .title {
    padding: 10px;
  }

  input[type="email"], button {
    width: 90%;
  }

  .footer {
    padding: 10px;
  }

  .footer-content {
    gap: 10px;
  }
}