/* Styles pour la page de connexion */
    body {
      background-color: #f5f5f5; /* blanc légèrement sombre */
      font-family: "Poppins", sans-serif;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .login-wrapper {
      background-color: #fff;
      border-radius: 20px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
      overflow: hidden;
      max-width: 900px;
      max-height: 450px;
      width: 100%;
    }

    .login-image {
      background: url('../images/download1.jpeg')
        center/cover no-repeat;
      min-height: 450px;
    }

    .login-form {
      padding: 30px 20px;
    }

    .login-form h3 {
      font-weight: 600;
      margin-bottom: 30px;
      text-align: center;
    }

    .form-control {
      border-radius: 10px;
      padding: 10px 15px;
    }

    .form-control:focus {
      border-color: #0a58ca;
      box-shadow: 0 0 5px rgba(11,94,215,0.2);
    }

    .btn-login {
      background-color: #0b5ed7;
      border: none;
      border-radius: 10px;
      padding: 10px;
      font-weight: 500;
      transition: 0.3s;
    }

    .btn-login:hover {
      background-color: #0a58ca;
    }

    .footer-text {
      font-size: 0.9rem;
      color: #888;
      margin-top: 20px;
      text-align: center;
    }

    @media (max-width: 768px) {
      .login-image {
        display: none;
      }
      .login-form {
        padding: 40px 25px;
      }
    }
  