@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400&display=swap');
@font-face {font-family: "CCSignLanguage Bold";
    src: url("fonts/3a137c528c2902708ed78ac8a6af72fb.eot"); /* IE9*/
    src: url("fonts/3a137c528c2902708ed78ac8a6af72fb.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
    url("fonts/3a137c528c2902708ed78ac8a6af72fb.woff2") format("woff2"), /* chrome、firefox */
    url("fonts/3a137c528c2902708ed78ac8a6af72fb.woff") format("woff"), /* chrome、firefox */
    url("fonts/3a137c528c2902708ed78ac8a6af72fb.ttf") format("truetype"), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
    url("fonts/3a137c528c2902708ed78ac8a6af72fb.svg#CCSignLanguage Bold") format("svg"); /* iOS 4.1- */
  }




.instagram{
    width: 1.5vmax;
}

body {
    background: rgb(255, 255, 255);
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.btn {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px; /* Ajoute de l'espace au-dessus du bouton */
}

.btn-primary {
    background-color: #000000; /* Bouton orange */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.confirmation-box {
    display: none;
    position: fixed;
    top: 50%; /* Décalage vertical au milieu */
    left: 50%; /* Décalage horizontal au milieu */
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5); /* Fond semi-transparent */
    z-index: 9999;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.container-login {
  padding: 20px;
  border-radius: 8px;
  width: 570px;
  margin: 0 auto;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center; /* Centrer horizontalement /
  justify-content: center; / Centrer verticalement /
  height: 570px; / Ajoutez une hauteur fixe */
  margin-top: 200px;
  border-radius: 1.2rem;
}


.password-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.password-container input {
  flex-grow: 1;
  padding-right: 40px; /* Add space for the button */
}

.password-container button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eye-icon {
  cursor: pointer;
  font-size: 1.2em; /* Ajustez la taille si nécessaire */
  margin-right: 4px;
}

.eye-icon-visible {
  color: #000; /* Changez la couleur lorsque l'icône est basculée */
}


.ring {
position: relative;
width: 500px;
height: 500px;
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 20px; /* Ensure there's space below the rings */
}

.ring i{
  position: absolute;
  inset: 0;
  border: 2px solid #000000;
  transition: 0.5s;
}

.ring i:nth-child(1){
  border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
  animation: animate 6s linear infinite;
}

.ring i:nth-child(2){
  border-radius: 41% 44% 56% 59%/38% 62% 63% 37%;
  animation: animate 4s linear infinite;
}

.ring i:nth-child(3) {
  border-radius: 41% 44% 56% 59%/38% 62% 63% 37%;
  animation: animate2 10s linear infinite;
}

.ring:hover i:nth-child(1) {
    border: 6px solid #FF00FF;
    filter: drop-shadow(0 0 20px #ff28ff);
  }

  .ring:hover i:nth-child(2) {
    border: 6px solid #8000FF;
    filter: drop-shadow(0 0 20px #8d20fa);
  }

.ring:hover i:nth-child(3) {
    border: 6px solid #8000FF;
    filter: drop-shadow(0 0 20px #8d20fa);
  }


@keyframes animate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate2 {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.login {
  position: absolute;
  width: 300px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.login h2 {
  font-size: 2em;
  color: #000000;
}

.login .inputBx {
  position: relative;
  width: 100%;
}

.login .inputBx label {
  color: #000000;
  display: block;
  margin-bottom: 8px;
}

.login .inputBx input {
  position: relative;
  width: 100%;
  padding: 12px 20px;
  background: transparent;
  border: 2px solid #000000;
  border-radius: 40px;
  font-size: 1.2em;
  color: #000000;
  box-shadow: none;
  outline: none;
}

.login .inputBx input[type="submit"] {
  width: 100%;
  background: linear-gradient(45deg, #ff357a, #fff172);
  border: none;
  cursor: pointer;
  color: #111;
}

.login .inputBx input::placeholder {
  color: rgba(0, 0, 0, 0.75);
}

.login .links {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  color:rgb(0, 0, 0);
}

.login .links a {
  color: #000000;
  text-decoration: none;
}

.error {
  color: red;
  font-size: 0.9em;
  margin-top: 10px;
}

.register {
  position: absolute;
  width: 300px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;


}

.register h2 {
  font-size: 2em;
  color: #fff;
}

.register .inputBx {
  position: relative;
  width: 100%;
}

.register .inputBx label {
  color: #fff;
  display: block;
  margin-bottom: 8px;
}

.register .inputBx input {
  position: relative;
  width: 100%;
  padding: 12px 20px;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 40px;
  font-size: 1.2em;
  color: #fff;
  box-shadow: none;
  outline: none;
}

.register .inputBx input[type="submit"] {
  width: 100%;
  background: linear-gradient(45deg, #ff357a, #fff172);
  border: none;
  cursor: pointer;
  color: #111;
}

.register .inputBx input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.register .links {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  color: gray;
}

.register .links a {
  color: #fff;
  text-decoration: none;
}

.success-message {
  color: #28a745;
  font-size: 16px;
  margin-bottom: 20px;
  text-align: center; /* Center the success message */
}

.container-sup {
  margin-bottom: 10000px;
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Styles pour la section des membres */
.memberstitle {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 10px;
  border-radius: 4px 4px 0 0;
}


.home{
  margin-top: 400px;
  width: 80%;
  margin: auto;
  display: block;
  
}

.video-js {
  border-radius: 5px;
  border: 4px;
  margin-top: 100px;
  margin-bottom: 150px;
}

.home_description {
  background-color: #fff;
  border-radius: 8px;
  margin-top: 170px;
}

.home_description h2 {
  color: #000000;
  font-family: Montserrat;
}

.home_description p {
  color: #000000;
  line-height: 1.6;
  font-family:'Open sans', sans-serif  
}

.custom-separator {
  width: 40cm; /* Ajustez à 2cm si vous préférez */
  height: 100%; /* Augmentez la hauteur pour une ligne plus épaisse */
  background-color: black; /* Couleur de la ligne */
  margin: 20px auto; /* Centre la ligne horizontalement */
}
  
p.membres {
  text-align: center;
  font-family: Montserrat, sans-serif;
  color: #000;
}


.membres {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 60px;
}

.allmembers {
  text-align: center;
}

.members.articles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

article {
  margin: 20px;
}

figure {
  margin: 0;
}

.article-body {
  text-align: center;
}

