body {
  margin: 0;
  font-family: 'Roboto Mono', monospace;
  background: linear-gradient(to right, #0d0d0d, #1a1a1a);
  color: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-container {
  background-color: #111;
  padding: 2rem 3rem;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(255, 76, 41, 0.2);
  width: 100%;
  max-width: 400px;
}

h2 {
  text-align: center;
  color: #ff4c29;
  margin-bottom: 2rem;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 0.5rem;
  color: #ccc;
}

input {
  padding: 0.8rem;
  margin-bottom: 1.5rem;
  background-color: #222;
  border: 1px solid #444;
  border-radius: 5px;
  color: white;
  font-size: 1rem;
}

input:focus {
  border-color: #ff4c29;
  outline: none;
}

button {
  background-color: #ff4c29;
  color: white;
  border: none;
  padding: 0.8rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #e63e1d;
}

.signup-link {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
}

.signup-link a {
  color: #ff4c29;
  text-decoration: none;
}
