body {
    background-color: #28a745; /* ✅ Fond vert */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'Poppins', sans-serif;
}

.login-container {
    background: white;
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    width: 320px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    width: 150px;
    margin-bottom: 10px;
}

h2 {
    color: #333;
    font-size: 22px;
}

p {
    font-size: 14px;
    color: #666;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    text-align: left;
    margin-top: 10px;
    font-size: 14px;
    font-weight: bold;
}

input {
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.btn-login {
    background-color: #28a745;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
    font-size: 16px;
}

.btn-login:hover {
    background-color: #218838;
}

.back-home {
    display: block;
    margin-top: 15px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.back-home:hover {
    text-decoration: underline;
}

.forgot-password {
  margin-top: 10px;
  font-size: 13px;
  color: #28a745;
  text-decoration: none;
}

.forgot-password:hover {
  text-decoration: underline;
}

input:focus {
  outline: none;
  border-color: #28a745;
  box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.2);
}


@media (max-width: 400px) {
  .login-container {
    width: 90%;
    padding: 20px;
  }
}
