/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 16 2023 | 19:50:16 */
/* Ajouter votre code CSS ici.
                     
Par exemple:
.exemple {
    color: red;
}

Pour améliorer vos connaissances en CSS, visitez http://www.w3schools.com/css/css_syntax.asp

Fin du commentaire */ 

.otp-input {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
  }

  .otp-input input {
    width: 22%;
    height: 40px;
    text-align: center;
    font-size: 18px;
  }

  .center-button {
    text-align: center;
    justify-content: center;
  }

.otp-input {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 10px;
}

.otp-input input {
  width: 20%;
  
  height: 40px;
  text-align: center;
  font-size: 18px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 99;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 400px;
}


/* Classe utilisée pour les champs de saisie de l'OTP */
.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* Classe utilisée pour le bouton de validation */
.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* Classe utilisée pour le message d'erreur */
#successMessage {
  display: none;
  text-align: center;
}

/* Classe utilisée pour le texte de message d'erreur */
#successMessage span {
  color: red;
  font-weight: bold;
}

/* Classe utilisée pour le conteneur du contenu du modal */
.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fefefe;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

/* Classe utilisée pour le conteneur principal */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

/* Classe utilisée pour l'animation du modal */
.animate {
  animation: modal-animation 0.3s;
}

/* Classe utilisée pour le titre du modal */
.modal-title {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

/* Animation utilisée pour le modal */
@keyframes modal-animation {
  from {
    opacity: 0;
    transform: translate(0, -50%);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}

