@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&family=Roboto+Slab:wght@100..900&family=Tagesschrift&display=swap');
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Orbitron';
}

body {
  background-color: #121212; /* Lightly shaded black */
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 20px;
}

.logo {
  max-width: 130px;
  align-self: center;
  
}

.login-form {
  display: flex;
  flex-direction: column;
  background-color: #1e1e1e;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  width: 100%;
  max-width: 400px;
}

.login-form h2 {
  text-align: center;
  margin-bottom: 25px;
  font-weight: 500;
}

.input-group {
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.input-group input {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  background-color: #2a2a2a;
  color: white;
}

.input-group input::placeholder {
  color: #aaa;
}

.login-button {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border: none;
  border-radius: 8px;
  background: #ffffff;
  color: #000000;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.login-button:hover {
  background: #dddddd;
}

.signup-link {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
}

.signup-link a {
  color: #ffffff;
  text-decoration: underline;
}

@media (max-width: 480px) {
  .login-form {
    padding: 25px 20px;
  }

  .logo {
    max-width: 120px;
    margin-bottom: 20px;
  }
}