.principal {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 95%;
  margin-top: 17vh;
}

.container-pop {
  width: 450px;
  height: 100%;
  background-color: #153f4b;
  margin: 0 auto;
  border-radius: 15px;
  box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.718);
  border: #15d1df 1px solid;
  overflow-y: scroll;
}

.element {
  display: flex;
  /* flex-direction: column; */
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 3%;
  width: 100%;
}

form .titre-form {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 10px;
  font-size: 30px;
  margin: auto;
  margin-top: 10%;
  color: white;
  background-color: #15d1df;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.603);
}

.desc {
  font-weight: bold;
  font-size: 13px;
  color: white;
}

.desc-confir {
  font-weight: bold;
  font-size: 13px;
  width: 100%;
  color: white;
}

.style-form {
  width: 170px;
  /* margin-left: 15%; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin: auto;
  margin-top: 3%;
}

.enter {
  width: 100%;
  height: 42px;
  border-radius: 25px;
  border: #15d1df solid 2px;
  background-color: white;
  box-sizing: border-box;
  box-shadow: 3px 7px 15px rgba(0, 0, 0, 0.247);
  margin-top: 2%;
}

.save {
  width: 163px;
  height: 46px;
  background-color: #15d1df;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 5px 10px 10px rgba(0, 0, 0, 0.25);
  margin: auto;
  margin-top: 3%;
}

.save a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

.save:hover {
  border: white 2px solid;
  color: black;
  font-weight: bold;
  border: white solid 2px;
}

/*POPUP*/
.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 0.4s;
  display: none;
  opacity: 0;
  z-index: 3;
  overflow-y: scroll;
}
.overlay:target {
  display: block;
  opacity: 1;
}

.overlay-content {
  margin-top: 5vh;
}

.popup {
  margin: 70px auto;
  margin-top: 40px;
  padding-left: 5px;
  /*background-color: #1e1e2a;*/
  /*border: 5px solid #ffd700;*/
  border-radius: 10px;
  width: 100%;
  position: relative;
  box-shadow: 5px 0px 25px rgba(0, 0, 0, 0.43);
  /* transition: all 4s ease-in-out; */
}

.overlay .close {
  position: absolute;
  top: 2vh;
  right: 50%;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: black;
  background-color: #15d1df;
  border-radius: 15px;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup .close:hover {
  color: white;
}
.popup .content-popup {
  max-height: 30%;
  overflow: auto;
}

/* Media query pour les écrans de petite taille (par exemple, mobile) */
@media only screen and (max-width: 768px) {
  .container-pop {
    height: 100vh;
  }
}
