.login-form-block{
    width: 400px;
    height: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 200px;
    background: #fff;
    padding: 30px;
    border-radius: 20px;   
}

.login-form-block h1{
    text-align: center;
}
.alert-error{
    color: red;
    text-align: center;
}
.alert-success{
    color: green;
    text-align: center;
    background: #fff;
}
.logo{
    width: 50px;
    height: 50px;
}
h3 {
    overflow: hidden;
    white-space: nowrap;
}

.scrolling-text {
    height: 50px; /* Hauteur fixe pour le texte */
    overflow: hidden; /* Empêche le débordement du texte */
    white-space: nowrap; /* Empêche le retour à la ligne */
    position: relative;
}

.scrolling-text h5 {
    display: inline-block;
    position: absolute;
    animation: scroll 10s linear infinite; /* Crée l'animation de défilement */
}

@keyframes scroll {
    0% {
        transform: translateX(100%); /* Commence à droite */
    }
    100% {
        transform: translateX(-100%); /* Défile vers la gauche */
    }
}










