.text-center-xl {
  display: flex;
  justify-content: center; /* centre horizontalement */
  align-items: center;     /* centre verticalement */
  height: 100%; /* ou une hauteur fixe, ex: 200px */
}

.text-sm55 {
      display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin-top: 30px;
    font-size: 22px;
    font-weight: 100 !important;
}

.mt-456 {
 display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin-top: 30px;
    font-size: 19px !important;
    font-weight: 500 !important;
    color: #ffffff;
    background-color: #db0012;
    border-radius: 25px;
    padding: 5px;
}

/* Spinner CSS pour le bouton */
.spinner {
  border: 3px solid rgba(255, 255, 255, 0.3); /* fond transparent */
  border-top: 3px solid white; /* couleur du spinner */
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
  margin-right: 8px; /* espace entre spinner et texte */
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
