/* Background sampled from image RGB: rgb(3, 10, 18) */
body {
  background-color: #030a15;
  color: #00ffff;
  font-family: monospace;
  margin: 0;
  padding: 0;
}

/* Container centers everything */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
}

.hero img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  margin: 0 auto 30px;
}

/* Form layout */
form {
  width: 100%;
  max-width: 400px;
  margin-top: 10px; /* try 100px if needed */
}
}

label {
  text-align: left;
  display: block;
  margin: 10px 0 5px;
  color: #00ffff;
}

/* Form inputs */
input, textarea, select, button {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #00ffff;
  color: #00ffff;
  padding: 10px;
  margin-bottom: 15px;
  font-family: monospace;
  font-size: 1em;
  box-sizing: border-box;
}

textarea {
  resize: vertical;
  min-height: 75px;
}

/* Button styles */
button {
  border: 1px solid #00ffff;
  background-color: transparent;
  cursor: pointer;
  padding: 10px 0;
}

button:hover {
  background-color: #001f1f;
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16'><polygon points='0,0 16,0 8,8' style='fill:%2300ffff'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
  padding-right: 30px;
}

/* Glow effect */
.glow-hover {
  transition: all 0.3s ease-in-out;
}

.glow-hover:hover {
  text-shadow: 0 0 8px #00ffff, 0 0 16px #00ffff;
  color: #00ffff;
}

/* Responsive */
@media (max-width: 600px) {
  .container {
    padding: 20px 10px;
  }

  .hero img {
    max-width: 90vw;
  }

  form {
    width: 100%;
  }
}
