.home-view-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 30vh; /* Ajuste la hauteur pour centrer le texte */
    text-align: center;
}

.home-title {
    font-size: 3rem;
    color: white;
    letter-spacing: 2px;
    margin: 70px 0;
}

.welcome-message {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
    font-size: 1.2rem;
    color: #ccc;
}

.success-banner {
    background-color: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #2ecc71;
    margin-bottom: 20px;
    margin-top: 20px;
    text-align: center;
    transition: opacity 0.6s ease, transform 0.6s ease, margin 0.6s ease, padding 0.6s ease, height 0.6s ease;
    overflow: hidden;
}
