/* Placeholder style */
body {
  font-family: Arial, sans-serif;
}
h1 {
  color: #101510;
}

/* Grundlayout */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  padding: 65px 20px;
}

/* Navbar-Styling */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 70px;
  background-color: #01D758;
  color: white;
  display: flex;
  align-items: center;
  padding: 0 30px;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  gap: 20px; 
}

/* Logo */
.logo img {
  height: 60px;
}


/* Navigationslinks */
.nav-links button {
  color: white;
  text-decoration: none;
  margin-left: 10px;
  font-size: 1rem;
  transition: background-color 0.4s;
  border: none;              
  outline: none;              
  padding: 15px 20px;         
  padding-bottom: 30px;
  margin-top: 5.5px;
  cursor: pointer;  
  background-color: #2c322c;
}

.nav-links button:hover {
  background-color:#6b756b;
}

/* Waitlist Page Styling */
.waitlist-page {
  background-color: #01D758; /* hacker green background */
  color: #00FF41; /* Matrix-style green font */
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-container {
  background-color: #000000;
  padding: 60px;
  padding-left: 35px;
  padding-right: 70px;
  border-radius: 12px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
}

.form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-left: 20px;
}

.form-header h2 {
  color: #00FF41;
  margin: 1000;
  font-size: 1.8rem;
}

.logo-icon {
  height: 70px;
}

form input[type="text"],
form input[type="email"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 50px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  background-color: #121212;
  color: #00FF41;
}

form input::placeholder {
  color: #00ff4180;
}

form button {
  background-color: #000;
  color: #00FF41;
  padding: 12px;
  border: 1px solid #00FF41;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  width: 20%;
  transition: background-color 0.3s;
  margin-left: 42%;
}

form button:hover {
  background-color: #00ff4180;
}

.honeypot {
  display: none;
}
