/* Styles pour la page de connexion */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f4f5f7;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.login-box {
  background: #fff;
  padding: 40px 35px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 350px;
}

.logo img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

h1 {
  font-size: 22px;
  color: #222;
  margin-bottom: 5px;
}

.subtitle {
  font-size: 13px;
  color: #666;
  margin-bottom: 25px;
}

label {
  display: block;
  text-align: left;
  font-size: 13px;
  color: #333;
  margin-bottom: 5px;
}

input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 14px;
}

input:focus {
  border-color: #1cc243;
  outline: none;
}

.forgot-password {
  text-align: right;
  font-size: 12px;
  margin-bottom: 15px;
}

.forgot-password a {
  color: #1cc243;
  text-decoration: none;
}

.btn-login {
  width: 100%;
  background-color: #1cc243;
  color: #fff;
  font-size: 15px;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-login:hover {
  background-color: #17a83a;
}
