body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: url('/assets/fond.png') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
}

.login-container {
  background-color: rgba(0, 0, 0, 0.85);
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.login-container h2 {
  margin: 0 0 15px;
  font-size: 1.2em;
  text-align: center;
  color: #fff;
}

.login-container input,
.login-container button {
  width: 100%;
  padding: 10px;
  margin: 5px 0;
  border: none;
  border-radius: 5px;
  box-sizing: border-box;
}

.login-container input {
  background: #fff;
  color: #000;
}

.login-container button {
  background: #2a8df5;
  color: white;
  cursor: pointer;
  font-weight: bold;
}

.login-container button:hover {
  background: #0072e0;
}

#login-message {
  font-size: 0.8em;
  color: #ccc;
  display: block;
  margin-top: 10px;
  text-align: center;
}
