body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: url('./bgg.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-container {
  background-color: rgba(0, 0, 0, 0.75);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  color: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}

.logo {
  font-size: 2.5rem;
  color: #e60000;
  margin-bottom: 10px;
}

.login-tagline {
  margin-bottom: 25px;
  font-size: 1.1rem;
}

input[type="text"],
input[type="password"] {
  display: block;
  width: 100%;
  margin: 10px 0;
  padding: 12px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
}

button {
  width: 100%;
  padding: 12px;
  background-color: #e60000;
  color: white;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 15px;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #cc0000;
}

.note {
  margin-top: 20px;
  font-size: 0.9rem;
}
.note a {
  color: #1e90ff;
  text-decoration: none;
}
