@import url("https://fonts.googleapis.com/css2?family=Syne:wght@400..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Syne:wght@400..800&display=swap");
* {
  margin: 0;
  padding: 0;
  font-family: "poppins", sans-serif;
  font-optical-sizing: auto;
  font-variation-settings: "slnt" 0;
  scrollbar-width: none;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: never;
  box-sizing: border-box;
}
body {
  /* background-image: url("assets/BG.png"); */
  background-color: #04050e;
  background-size: cover; /* cover the whole screen */
  background-position: center; /* center the image */
  background-repeat: no-repeat; /* prevent repeating */
  color: #fff;
  font-family: "Inter";
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: center; */
  height: 100vh;
  margin: 0;
  overflow: hidden;
}
.gradient-text {
  background: linear-gradient(to right, #0080ff, #8349ff, #ff6d1f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* for Firefox */
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  font-family: "syne";
}
.container {
  padding-top: 80px;
  text-align: center;
  max-width: 350px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}
.logo {
  width: 72px;
  margin-bottom: 20px;
}
h1 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  font-family: "syne";
}

p {
  font-size: 16px;
  color: #a0a0a0;
  margin: 0;
  font-weight: 400;
  line-height: 1.5;
  font-family: "inter";
}

input[type="email"] {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.24); /* 16% opacity white stroke */

  background: rgba(255, 255, 255, 0.16); /* 16% transparent fill */

  color: white;
  margin-bottom: 0px;
  margin-top: 24px;
  font-size: 16px;
  height: 56px;
  padding: 0 16px;
}
input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

button {
  width: 100%;
  border-radius: 12px;
  border: none;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0px;
  height: 56px;
}

.join-btn {
  background-image: url("assets/BG\ button.png");
  background-color: #04050e;
  background-size: cover; /* cover the whole screen */
  background-position: center; /* center the image */
  background-repeat: no-repeat;
}

.demo-btn {
  background: rgba(255, 255, 255, 0.08); /* 16% transparent fill */
}

.success-msg {
  color: #00ff88;
  margin-top: 10px;
  font-size: 14px;
}

.error-msg {
  color: #ff4444;
  margin-top: 10px;
  font-size: 14px;
}
