
body {
    font-family: monospace;
    margin: 0;
    padding: 0;
    background: #1D232A;
    color: white;
}

header {
    background: #0E1217;
    color: white;
    padding: 0.5rem;
    text-align: center;
    font-size: 1.2rem;

}

h1 {
    font-family: monospace;
    font-size: 3rem;
    text-align: center;
    padding: 1.5rem;

}

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

.loginButton, .signupButton {
    justify-content: center;
}

.loginContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.loginContainer input,
.loginContainer button {
  width: 200px;
  padding: 0.5rem;
  font-size: 1rem;
  border-radius: 6px;
  border: none;
  text-align: center;
}

.loginContainer button {
  background-color: #0E1217;
  color: white;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s ease;;
}

.loginContainer button:hover {
  background-color: #333;
  transform: translateY(-2px);
}
