/* Fond d'écran sur tout le body */
.login-body {
  margin: 0;
  height: 100vh;
  background-image: url('ScreenShow login page.png');
  background-size: cover;    
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Bouton centré */
.center-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 15px 30px;
  font-size: 1em;
  border: none;
  border-radius: 15px;
  background-color: rgb(103, 37, 173); /* fond semi-transparent */
  color: white;
  cursor: pointer;
  transition: background-color 0.3s;
}
i {
  font-size: 1.6em;
  color: #fff;
}

.center-button:hover {
  background-color: rgba(103, 37, 173, 0.7);
}

a {
  text-decoration: none;
}


@media screen and (max-width: 480px) {
.login-body {
  background-image: url('ScreenShow login page MOBILE.png');
}
.center-button {
  width: 80vw;
}
}
