/* Reset default spacing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: Arial, sans-serif;
  overflow-x: hidden;
  min-height: 100vh;  /* Changed from height: 100% */
  display: block;     /* Changed from flex */
  scroll-behavior: smooth;
}

/* Spline Background */
.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* Header - stays fixed while page scrolls */
.header {
  position: fixed;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 120px;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  background: transparent;
}

.logo {
  color: white;
  font-size: 30px;
  text-decoration: none;
  font-weight: 600;
  cursor: default;
  letter-spacing: normal;
}

.waitlist_button {
  padding: 10px 10px;
  font-weight: 600;
  font-size: 20px;
  background-color: transparent;
  color: white;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  border-radius: 5px;
  cursor: grabbing;
  transition: all 0.3s ease-out;
  text-decoration: none;
  letter-spacing: -1px;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5), 4px 4px 8px rgba(255, 255, 255, 0.424);
}

.waitlist_button:hover {
  background: rgb(157, 2, 204);
  color: rgb(0, 0, 0);
  text-shadow: 2px 2px 4px rgba(87, 3, 126, 0.5), 4px 4px 8px rgba(68, 4, 107, 0.416);
}

/* Content sections - now scrollable */
.content {
  position: relative;
  z-index: 1;
  color: white;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  padding-top: 0;  /* Add space for fixed header */
  margin-bottom: 300px;
}

.content p {
  font-size: 30px;
}

.header1 {
  display: block;
  font-size: 150px;
  width: 100%;
  text-align: center;
  margin: 0.2rem 0;
  letter-spacing: 5px;
  color: Green;

}
.para {
  color:rgb(1, 113, 11);
}

.section {
  min-height: 100vh;  /* Changed from height to min-height */
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  padding: 2rem;
  backdrop-filter: blur(4px);
}

/* Sign-up form section */
.sign-up {
  width: 80%;
  max-width: 600px;  /* Add max-width for better readability */
  padding: 40px 20px;
  margin: 60px auto;  /* Center and add vertical spacing */
  border-radius: 15px;
  color: white;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background: rgba(58, 58, 58, 0.533333);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7px);
  font-weight: bold;
  /* border: 1px solid rgba(255, 255, 255, 0.803); */
  border: none;
  position: relative;
  z-index: 1;
  margin-bottom: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;  
}

.sign-up header {
  font-size: 28px;
  margin-bottom: 20px;
  margin-right: 15px;
}

.sign-up input::placeholder {
  opacity: 0.5;
  color: rgb(194, 3, 194);

}

.sign-up input {
  padding: 10px;

  color: rgb(250, 250, 250);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 10px;
  padding-right: 10px;
  margin: 15px 0;
  width: 50%;
  border-radius: 5px;
  align-items: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  margin-left: 10px;
}

.sign-up button {
  padding: 10px 30px;
  background: rgb(157, 2, 204);
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 5px;
  margin-left: 10px;
}

.sign-up button:hover {
  background: rgb(200, 0, 260);
  transform: scale(1.05);
}