body {
  font-family: 'Courier New', Courier, monospace;
  background-color: #121212;
  color: #d4f4c6;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.signup-container {
  background-color: #1e1e1e;
  padding: 2rem;
  border: 2px solid #3dfc89;
  border-radius: 10px;
  width: 350px;
  box-shadow: 0 0 10px #3dfc89;
}

.signup-container h1 {
  text-align: center;
  margin-bottom: 1rem;
}

.signup-container h1 span {
  color: #3dfc89;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  margin: 0.5rem 0 0.2rem;
}

input {
  padding: 0.5rem;
  background: #2b2b2b;
  border: 1px solid #3dfc89;
  color: #d4f4c6;
  border-radius: 5px;
}

button {
  margin-top: 1rem;
  padding: 0.5rem;
  background-color: #3dfc89;
  color: #121212;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #2afc6b;
}

p {
  margin-top: 1rem;
  text-align: center;
}

a {
  color: #3dfc89;
  text-decoration: none;
}
