.leftside,
.rightside {
  height: 100vh;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .leftside,
  .rightside {
    height: 100vh;
  }
}
.leftside {
  background-image: url("fonde.jpg");
  background-size: cover;
  background-position: center;

  height: 123vh;
  width: 100%;
  /* Ajoute ces lignes : */
  padding: 40px 50px;
  box-sizing: border-box;
}
.rightside {
  background-image: url("foot_fond-27f3bade9f55.avif");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  height: 123vh;
  width: 100%;
}

h1 {
  display: flex;
  justify-content: center;
}

.btninscription {
  display: flex;
  justify-content: flex-end;
}
.leftside .con {
  display: flex;
  justify-content: center;
}

.leftside .con2 {
  display: flex;
  justify-content: center;
}

.role {
  display: flex;
  justify-content: center;
}

.profil {
  display: flex;
  justify-content: center;
}

.information {
  display: flex;
  justify-content: center;
}

.role :hover {
  color: rgb(48, 137, 48);
}

.rightside {
  animation-duration: 1s;
  animation-name: slide-in;
}

@keyframes slide-in {
  from {
    translate: 150vw 0;
    scale: 200% 1;
  }
  to {
    translate: 0 0;
    scale: 100% 1;
  }
}

.leftside {
  animation-duration: 1s;
  animation-name: slide-in;
}

@keyframes slide-in {
  from {
    translate: 150vw 0;
    scale: 200% 1;
  }
  to {
    translate: 0 0;
    scale: 100% 1;
  }
}
