/* Style pour le corps de la page */
body {
  color: #000;
  font-family: system-ui;
  font-size: 16px;
  line-height: 1.5;
}

.background-image {
      position: absolute;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      z-index: -1;
      filter: blur(5px) brightness(50%);
      animation: fadeInOut 30s infinite;
      opacity: 0;
    }
    .background-image:first-child {
      animation-delay: 0s;
      opacity: 1;
    }
    @keyframes fadeInOut {
      0% {
        opacity: 1;
      }
      33% {
        opacity: 0;
      }
      66% {
        opacity: 0;
      }
      100% {
        opacity: 1;
      }
    }
/* Style pour le titre */
h1 {
  text-align: center;
  margin-top: 50px;
}

/* Style pour le formulaire */
form {
  max-width: 600px;
  margin: 0 auto;
}

label {
  display: block;
  margin-bottom: 10px;
}

input {
  background-color: rgb(0 0 0 / 13%);
  color: #000;
  font-weight: bold;
  padding: 10px;
  text-align: center;
  border: none;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 20px;
}

button[type="submit"] {
  background-color: #fff;
  color: #1b1b1b;
  font-weight: bold;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #ebebeb;
}

/* Style pour la boîte de dialogue modale */
#modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
}

/* Style pour le contenu de la boîte de dialogue modale */
.modal-content {
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  max-width: 600px;
  margin: 0 auto;
}

/* Style pour le bouton de fermeture */
#close-btn {
  background-color: #fff;
  color: #1b1b1b;
  font-weight: bold;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

#close-btn:hover {
  background-color: #ebebeb;
}

/* Style pour le texte de la boîte de dialogue modale */
#modal h2 {
  margin-top: 0;
}

#modal p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.5;
}

/* Style pour la case à cocher */
#checkbox-label {
  display: block;
  margin-bottom: 10px;
}

#checkbox {
  margin-right: 10px;
}

#my-form {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 600px; /* largeur maximale du formulaire */
  background-color: rgb(0 0 0 / 98%); /* couleur de fond noire transparente */
  padding: 50px; /* marge intérieure */
}

#my-form2 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 600px; /* largeur maximale du formulaire */
  padding: 50px; /* marge intérieure */
}


button {
  display: inline-block;
  width: 48%;
  margin: 10px 1%;
  padding: 10px;
  background-color: black;
  color: white;
  border: none;
}

button:first-of-type {
  margin-left: 0;
}

button:last-of-type {
  margin-right: 0;
}

.btn {
  display: inline-block;
  width: 100% !important; 
  margin: 15px 1%;
  padding: 10px;
  background-color: black !important;
  color: white !important;
  border: none;
}

.btn:first-of-type {
  margin-left: 0;
}

.btn:last-of-type {
  margin-right: 0;
}

.bg-dark-alfa:before,
.bg-dark-alfa .YTPOverlay:before{
    content: " ";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(17,17,17, .97);
}
.bg-dark-alfa-30:before,
.bg-dark-alfa-30 .YTPOverlay:before{
    content: " ";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(34,34,34, .3);
}
.bg-dark-alfa-50:before,
.bg-dark-alfa-50 .YTPOverlay:before{
    content: " ";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(34,34,34, .5);
}
.bg-dark-alfa-70:before,
.bg-dark-alfa-70 .YTPOverlay:before{
    content: " ";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(17,17,17, .7);
}
.bg-dark-alfa-90:before,
.bg-dark-alfa-90 .YTPOverlay:before{
    content: " ";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(3,3,3, .9);
}
.bg-light-alfa:before{
    content: " ";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(252,252,252, .97);
}
.bg-light-alfa-30:before,
.bg-light-alfa-30 .YTPOverlay:before{
    content: " ";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(252,252,252, .30);
}
.bg-light-alfa-50:before,
.bg-light-alfa-50 .YTPOverlay:before{
    content: " ";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(252,252,252, .50);
}
.bg-light-alfa-70:before,
.bg-light-alfa-70 .YTPOverlay:before{
    content: " ";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(252,252,252, .7);
}
.bg-light-alfa-90:before,
.bg-light-alfa-90 .YTPOverlay:before{
    content: " ";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(252,252,252, .9);
}
.bg-color{
    background-color: #f1273c;
}
.bg-color-alfa:before,
.bg-color-alfa .YTPOverlay:before{
    content: " ";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #f1273c;
    opacity: .97;
}
.bg-color-alfa-30:before,
.bg-color-alfa-30 .YTPOverlay:before{
    content: " ";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #f1273c;
    opacity: .3;
}
.bg-color-alfa-50:before,
.bg-color-alfa-50 .YTPOverlay:before{
    content: " ";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #f1273c;
    opacity: .5;
}
.bg-color-alfa-70:before,
.bg-color-alfa-70 .YTPOverlay:before{
    content: " ";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #f1273c;
    opacity: .7;
}
.bg-color-alfa-90:before,
.bg-color-alfa-90 .YTPOverlay:before{
    content: " ";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #f1273c;
    opacity: .9;
}
.player {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    filter: blur(10px); /* change this value to increase or decrease the blur */
}
/* Container de la barre de progression */
.progress {
    background-color: #f3f3f3; /* Couleur de fond de la barre */
    border-radius: 20px; /* Bordures arrondies */
    height: 30px; /* Hauteur de la barre */
    margin-top: 20px; /* Espacement au-dessus */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15); /* Petite ombre pour donner un effet 3D */
}

/* Barre de progression elle-même */
.progress-bar {
    background: linear-gradient(45deg, #3498db, #2980b9); /* Dégradé bleu pour la barre */
    border-radius: 20px; /* Bordures arrondies pour la barre de progression */
    font-weight: bold; /* Texte en gras */
}

