
    body {
    background-color: #eef2f7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    }

    .top-bar {
    background-color: #ffffff;
    padding: 1rem 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    display: flex;
    justify-content: center; /* Centrage horizontal */
    align-items: center;
    }

    .top-bar img {
    height: 95px;
    }
    p{
        padding-bottom: 25px;
    }

    .login-section {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: flex-end;
      padding-bottom: 5vh;
    }

    .login-card {
      width: 100%;
      max-width: 400px;
      background: #fff;
      padding: 2rem;
      border-radius: 0.5rem;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
    }
    .login-card {
    animation: fadeInUp 0.6s ease-out;
    }

    @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
    }
