@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap");
*, ::before, ::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  list-style: none;
  text-decoration: none;
}

body {
  width: 100%;
  height: 100%;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(to bottom, #e0f7fa, #80deea, #26c6da, #0097a7);
  background-size: cover;
  display: flex;
  flex-direction: column;
}

.site-total {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  /*height: 80vh;*/
  margin: 15px;
}

.ariane {
  font-size: 0.8em;
  margin-bottom: 15px;
}
.ariane a {
  color: #777;
}

.item-register {
  width: 100%;
  max-width: 450px;
  padding: 25px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  border-radius: 15px;
  box-shadow: #555 1px 2px 10px;
  /*height: 65vh;*/
}
.item-register input, .item-register select {
  width: 100%;
  padding: 5px;
  font-size: 1.4em;
  margin-bottom: 15px;
  border-radius: 15px;
  outline: none;
}
.item-register input:hover, .item-register select:hover {
  border: 1px solid #c03a79;
}
.item-register button[type=submit] {
  padding: 15px 35px;
  border-radius: 15px;
}
.item-register img {
  width: 100%;
  max-width: 150px;
}

@media screen and (max-width: 420px) {
  .item-register {
    height: 70vh;
  }
}
.element-structure {
  padding: 50px 0;
}

.bandeau-intro {
  width: 100%;
  background-color: #fff;
  color: #fff;
  padding: 5px 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  justify-content: space-between;
}
.bandeau-intro h1 {
  flex: 1;
}
.bandeau-intro div {
  flex: 2;
}
.bandeau-intro img {
  width: 100%;
  max-width: 75px;
}
.bandeau-intro ul {
  color: #333;
}

@media screen and (max-width: 420px) {
  .bandeau-intro {
    flex-direction: column;
  }
}
.inscription-register {
  background-color: #fff;
  width: 100%;
  max-width: 800px;
  padding: 15px;
  border-radius: 0 0 35px 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.inscription-register h1, .inscription-register h2, .inscription-register h3, .inscription-register h5, .inscription-register h6 {
  text-align: center;
}
.inscription-register input, .inscription-register select {
  padding: 8px 12px;
  font-size: 1.3em;
  width: 100%;
  /*max-width: 250px;*/
  margin: 5px;
  border-radius: 5px;
  border: 1px solid #ccc;
  flex: 1 0;
  outline: none;
}
.inscription-register input:hover, .inscription-register select:hover {
  border: 1px solid #3ac05a;
}
.inscription-register input:focus, .inscription-register select:focus {
  border: 1px solid #3ac05a;
}
.inscription-register input::placeholder, .inscription-register select::placeholder {
  font-style: italic;
}
.inscription-register input[type=checkbox], .inscription-register select[type=checkbox] {
  width: 25px;
}
.inscription-register button[type=submit] {
  padding: 15px 35px;
  border-radius: 15px;
  cursor: pointer;
}
.inscription-register button[type=submit]:hover {
  background-color: #555;
}

.pmr-element {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.message-information {
  font-size: 0.9em;
  color: #bbb;
  padding: 10px 15px;
}

.prime-element-formulaire-ligne {
  display: flex;
  flex: 0 0 1;
}

.element-formulaire-ligne {
  /*display: flex;
  flex-direction: row;
  justify-content: center*/
}

@media screen and (max-width: 900px) {
  .element-formulaire-ligne {
    flex-direction: column;
    align-content: center;
    align-items: center;
  }
}
.footer-content {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  text-align: center;
  padding: 50px 0;
}

.btn_register {
  padding: 15px 35px;
  border-radius: 15px;
  cursor: pointer;
  border: none;
  background-color: #28a745;
}
.btn_register:hover {
  background-color: #3ac05a;
}

.option-item {
  font-size: 0.9em;
  color: #ccc;
  font-style: italic;
}

.alert ul {
  list-style-type: circle;
}
.alert ul li {
  padding: 0 0 10px 5px;
}

.hidden {
  display: none;
}

.bouton-ajouter {
  margin: 20px auto;
  display: block;
  padding: 10px 20px;
  font-weight: bold;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.bouton-ajouter:hover {
  background-color: #0056b3;
}

.switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
}
.switch input {
  display: none;
}
.switch .slider {
  position: relative;
  width: 42px;
  height: 24px;
  background-color: #ccc;
  border-radius: 34px;
  transition: background-color 0.3s;
}
.switch .slider::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 3px;
  width: 18px;
  height: 18px;
  background-color: white;
  border-radius: 50%;
  transition: transform 0.3s;
}
.switch input:checked + .slider {
  background-color: #4caf50;
}
.switch input:checked + .slider::before {
  transform: translateX(18px);
}
.switch .switch-label {
  user-select: none;
}

.entete-tableau-invite {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.entete-tableau-invite h4 {
  padding: 0 15px 0 0;
  font-size: 1.2em;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.5s ease;
}
#overlay.show {
  opacity: 1;
}
#overlay.show .popup {
  transform: scale(1);
}
#overlay .popup {
  position: relative;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 500px;
  width: 90%;
  transform: scale(0.8);
  transition: transform 0.5s ease, opacity 0.5s ease;
}
#overlay .popup h2 {
  margin-top: 0;
}
#overlay .popup button {
  margin-top: 20px;
  padding: 10px 20px;
  border: none;
  background: #007BFF;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}
#overlay .popup button:hover {
  background: #0056b3;
}
#overlay .popup .close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 30px;
  color: #333;
  cursor: pointer;
  font-weight: bold;
  transition: color 0.3s ease;
}
#overlay .popup .close-btn:hover {
  color: #007BFF;
}

/*# sourceMappingURL=style.css.map */
