@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap");

.imgback {
  background-image: url(../images/favicon.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}

body {
  font-family: "Poppins", sans-serif;
  background-image: url(../images/PEAGE.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* Centrer le titre et ajouter un peu d'espacement */
.title-area {
  text-align: center;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/*------------ Login container ------------*/

.box-area {
  width: 100%;
  max-width: 930px;
}

/*------------ Right box ------------*/

.right-box {
  padding: 40px 30px 40px 40px;
}

/*------------ Custom Placeholder ------------*/

::placeholder {
  font-size: 16px;
}

.rounded-4 {
  border-radius: 20px;
}

.rounded-5 {
  border-radius: 30px;
}

/*------------ For small screens------------*/

@media only screen and (max-width: 768px) {
  .box-area {
    margin: 0 10px;
    padding: 20px;
  }
  .left-box {
    height: 200px; /* Ajuste la hauteur sur les petits écrans */
    overflow: hidden;
  }
  .right-box {
    padding: 20px;
  }
  .title-area {
    color: rgb(107, 106, 106);
  }
  
}
