/* styles.css */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #1e1e1e;
  color: white;
}

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1e1e1e;

  border-bottom: 2px solid rgba(19, 157, 1, 1);
}
.container{
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 5px;
}
.logo{
  padding: 10px;
  align-items: center;
  justify-content: center;
}
.logo img {
  height: 80px;
}

.countdown {
  display: flex;
  gap: 20px;
  font-family:  monospace;
  text-align: center;
}

.countdown div span {
  display: block;
  font-size: 28px;
  color: rgba(19, 157, 1, 1);
  font: Digital Numbers;
  }

.countdown div p {
  font-size: 15px;
  margin: 0;
  color: #ccc;
}

/* Main Section Styles */
.main-section {
  padding: 60px 20px;
  margin: 4%;
  text-align: center;
  justify-content: center;

}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 15px 15px;
}

.main-logo {
  max-width: 250px;
  width: 100%;
  margin-bottom: 15px;
 }

h1 {
  margin-top: -0px;
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 600;
}
.the-box{
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 50px;
  padding-right: 50px;
}

.form-box {
  width: 80%;
  background-color: #212121;
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 30px;
}

.form-box p {
  margin-bottom: 15px;
  font-size: 1rem;
  color: rgba(199, 199, 199, 0.8);
}

.waitlist-form {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 0px;
}



.waitlist-form input,
.waitlist-form button {
  padding: 8px 10px;
  margin: 8px;
  border: none;
  border-radius: 8px;
  font-size: 12px;
  font-weight: bold;
  outline: none;
}

.waitlist-form input {
  background-color: #2a2a2a;
  color: white;
}

.waitlist-form button {
  background-color: rgba(19, 157, 1, 1);
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.waitlist-form button:hover {
  background-color: #00aa00;
}

/* Social Icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icons a {
  color: white;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #00cc00;
}

/* footer */
.align{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1e1e1e;
  border-top: 1px solid white;
    
}
.justify{
  display: block;
  text-align: center;
  color: #FFFFFF66;
  }

/* responsive header */
@media (max-width: 768px) {
  .container {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-right: 5%;
    text-align: center;
  }

  .countdown {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .logo img {
    height: 60px;
  }
}

@media (max-width: 480px) {
  .countdown div span {
    font-size: 22px;
  }

  .countdown div p {
    font-size: 9px;
  }

  .logo img {
    height: 50px;
  }

  .header {
    padding: 10px 0;
  }

  .container {
    width: 90%;
  }
  .justify{
    font-size: 12px;
  }
}


/* Responsive main section*/

@media (max-width: 1024px) {
  h1 {
    font-size: 2.2rem;
  }

  .form-box {
    width: 100%;
  }

  .main-logo {
    max-width: 200px;
  }
}

@media (max-width: 768px) {
  .waitlist-form {
    flex-direction: column;
    align-items: center;
  }

  .waitlist-form input,
  .waitlist-form button {
    width: 100%;
    margin: 6px 0;
    font-size: 14px;
  }

  .the-box {
    padding-left: 10px;
    padding-right: 10px;
  }

  h1 {
    font-size: 1.8rem;
  }

  .main-logo {
    max-width: 160px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  .main-section {
    padding: 40px 10px;
  }

  .form-box {
    padding: 20px;
  }

  .main-logo {
    max-width: 140px;
  }

  .social-icons a {
    font-size: 1.1rem;
  }
}
