
body {
  font-family: Arial, sans-serif;
  background-color: #000;
  color: #fff;
  margin: 0;
  padding: 40px 0 0 0; /* added top padding so the logo is fully visible */
  display: flex;
  justify-content: center;
  align-items: flex-start; /* align from the top instead of perfect center */
  min-height: 100vh; /* ensures it still fills full height */
  box-sizing: border-box;
}


.container {
  max-width: 400px;
  padding: 40px;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.logo {
  width: 100%;
  max-width: 200px;
  margin-bottom: 20px;
}

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

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #aaa;
}

.form-group input {
  width: calc(100% - 40px);
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: #333;
  color: #fff;
  margin-top: 5px;
}

.form-group button {
  width: calc(100% - 40px);
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: #e50914;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-group button:hover {
  background-color: #ff0033;
}

.signup-link {
  color: #aaa;
  text-decoration: none;
}

.signup-link:hover {
  text-decoration: underline;
}

.message {
  font-size: 24px;
  margin-bottom: 20px;
}

.login-button {
  padding: 15px 30px;
  background-color: #e50914;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login-button:hover {
  background-color: #ff0033;
}
