/* Typography & Base */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #060007;
  color: #e2d1e6;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

h1 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 3rem;
  margin-bottom: 0.2em;
}

.highlight {
  font-weight: 400;
  text-decoration: underline;
  color: #c55ddd;
}

/* Colors */
.purple {
  color: #4c0b5b;
}

.gold {
  color: #cd9e05;
}

/* Container */
.container {
  text-align: center;
  max-width: 600px;
  padding: 2rem;
}

/* Form */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input[type="email"] {
  padding: 0.75rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
}

input[type="name"] {
  padding: 0.75rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
}

button {
  padding: 0.75rem;
  background-color: #4c0b5b;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}

button:hover {
  background-color: #cd9e05;
}

#form-message {
  font-size: 0.9rem;
  color: #cd9e05;
}
