body{
    background-color: cornsilk; 
    background-size: cover; 
}



.login {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; /* Pour centrer verticalement le contenu */
  text-align: center; /* Pour centrer horizontalement le contenu */
}

/* Vous pouvez supprimer les règles media queries pour le moment, car elles ne sont pas nécessaires. */

.login form {
  max-width: 100%; /* Ajuster la largeur du formulaire */
}

.nom{
    font-family: cursive;
}

.notify-alert-box{
	width: 400px;
	position: fixed;
	left: 50%;
	margin-left: -200px;
	top: 0; /*top: -100%;*/
	padding: 20px;
	z-index: 100000;
	background:#fff;
	color: #333;
	transition: all 1s ease-in-out;
}
.notify-alert-box img{
	width: 70px;
	float: left;
	margin-right: 10px;
}

.buttons{
	text-align: right;
}
.buttons button{
	background:#024e73;
	color: #fff;
	border:0;
	padding: 8px 15px;
	font-size: 12px;
	cursor: pointer;
}


.toggle {
    width: 30px;
    height: 30px;
    background: #c70039;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
  }
  
  .toggle::before {
    content: '\f1e0';
    width: 100%;
    height: 100%;
    position: absolute;
    color: white;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    text-align: center;
    line-height: 30px;
    font-size: 22px;
  }

  .share.active .toggle::before {
    content: '\f00d';
    font-size: 2rem;
  }
  /* .share {
    position: fixed;
    bottom: 70px;
    right: 70px;
  } */
  .share ol {
    position: absolute;
    width: 30px;
    height: 30px;
  }

  .share ol li {
    position: absolute;
    width: 50px;
    height: 50px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all .3s;
    opacity: 0;
  }
  
  .share ol li a {
    color: black;
  }
  
  .share.active ol li {
    opacity: 1;
    transition: all .3s;
  }

  .share.active ol li:nth-child(1) {
    transition-delay: .1s;
    transform: translateX(60px);
  }
  
  .share.active ol li:nth-child(2) {
    transition-delay: .2s;
    transform: translateY(60px);
  }
  
  .share.active ol li:nth-child(3) {
    transition-delay: .3s;
    transform: translateX(-60px);
  }
  
  .share.active ol li:nth-child(4) {
    transition-delay: .4s;
    transform: translateY(-60px);
  }

  .contain{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #efefef;
  }
  
.slide-container {
  max-width: 100%;
  width: 100%; 
  padding: 10px 0;
}

.slide-content {
  margin: 0 10px;
  overflow: hidden;
  border-radius: 10px; 
}


.cad{
border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Ajout d'une ombre pour une meilleure séparation */

}
.image-contnt,
.card-contnt{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 14px;
}
.image-contnt{
  position: relative;
  row-gap: 5px;
  padding: 25px 0;
}
.overlay{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #4070f4;
  border-radius: 25px 25px 0 25px;
}
.overlay::before,
.overlay::after{
  content: '';
  position: absolute;
  right: 0;
  bottom: -40px;
  height: 40px;
  width: 40px;
  background-color: #4070f4;
}
.overlay::after{
  border-radius: 0 25px 0 0;
  background-color: #fff;
}
.card-imag{
  position: relative;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
}

.card-imag .card-img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #4070f4;
}
.name{
  font-size: 18px;
  font-weight: 500;
  color: #333;
}
.confession{
  font-size: 12px;
  color: #080808;
  text-align: center;
}
.description{
  font-size: 12px;
  color: #707070;
  text-align: center;
}
.butt{
  border: none;
  font-size: 14px;
  color: #fff;
  padding: 5px 12px;
  background-color: #4070f4;
  border-radius: 0;
  margin: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.butt:hover{
  background: #265df2;
}
.swiper-navBtn{
  color: black;
  transition: color 0.3s ease;
}
.swiper-navBtn:hover{
  color: black;
}
.swiper-navBtn::before,
.swiper-navBtn::after{
  font-size: 20px;
}
.swiper-button-next{
  right: 0;
}
.swiper-button-prev{
  left: 0;
}
.swiper-pagination-bullet{
  background-color: #6E93f7;
  opacity: 1;
}
.swiper-pagination-bullet-active{
  color: #4070f4;
}


@media screen and (max-width: 768px) {
  .slide-content{
    margin: 0 10px;
  }
  .swiper-navBtn{
    display: none;
  }
}

.collapsed-description {
  max-height: 100px; /* Ajustez la hauteur maximale selon vos besoins */
  overflow: hidden;
  position: relative;
}

/* Styles de base pour le formulaire */
form {
  text-align: center;
  margin: 20px;
}

/* Styles de base pour les cartes */
.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px;
}

.cards {
  width: 45%;
  padding: 10px;
  border: 1px solid #ccc;
  margin-bottom: 10px;
  text-align: center;
}

/* Styles de base pour le bouton "Afficher le texte" */
.show-modal-btn {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
}

/* Styles de base pour le modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

#random-text {
  font-size: 18px;
}

#ok-button {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
}

/* Media queries pour rendre responsive */
@media (max-width: 768px) {
  .cards {
    width: 100%; 
    box-sizing: border-box;
  }
}


/* .modal {
  display: none;
} */
