* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-image: url('../img/fond.jpeg');;
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-container {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  width: 100%;
  max-width: 400px;
}

.login-card h1.logo {
  font-size: 28px;
  margin-bottom: 10px;
  color: #333;
  text-align: center;
}

.login-card h2 {
  font-size: 22px;
  margin-bottom: 25px;
  color: #555;
  text-align: center;
}

.input-group {
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
  color: #333;
}

.input-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

#reponse_message_connexion
           {
            
            display: none ;


           }
button {
  width: 100%;
  padding: 12px;
  background-color: #1d4791;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #273b5e;
}

.forgot {
  text-align: center;
  margin-top: 10px;
}

.forgot a {
  color: #777;
  text-decoration: none;
  font-size: 14px;
}

.forgot a:hover {
  text-decoration: underline;
}
