body {
  background-image: url(../img/bg-l.jpg);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
  width: 100%;
  color: white;

}

.top-position {
  margin-top: 15vh;
  margin-bottom: 15vh;
}

@media (max-width: 768px) {
  body {
    background-image: url(../img/bg-s.jpg);
  }

  .top-position {
    margin-top: 1vh;
  }
}

.main-row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;

  margin-top: calc(-1* var(--bs-gutter-y));
  margin-right: calc(-.5* var(--bs-gutter-x));
  margin-left: calc(-.5* var(--bs-gutter-x));
  align-content: center;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  min-height: 80vh;
  overflow-y: scroll;
}


.form-container {
  box-shadow: 6px 3px 20px #000000;
  border: 1px solid #707070;
  border-radius: 20px;
  opacity: 1;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);

}

.form-content {
  background: transparent linear-gradient(180deg, #e2c2c6 0%, #b9929f8c 100%) 0% 0% no-repeat padding-box;
  padding: 25px 20px;
}

footer {
  bottom: 0;
  width: 100%;
  display: block;
  position: relative;
}

.text-bold {
  font-weight: 700;
}

.footer-link {
  font-weight: 700;
  color: #2F0147;
  text-decoration: none;
}

.bg-footer {
  background-color: #e2c2c6;
  color: #2F0147;

  /* align-content: center; */
  flex-wrap: nowrap;
  font-weight: 700;
  min-height: 50px;
  display: flex;
  flex-wrap: wrap;
  /* Allows items to wrap to the next line if needed */
  justify-content: center;
  /* Centers items horizontally */
  align-items: center;
  /* Centers items vertically */
  gap: 10px;
  /* Adds space between items */
}

@media (max-width: 512px) {
  .bg-footer {
    flex-direction: column;
  }
}

.bg-footer2 {
  background-color: #2F0147;
  color: #e2c2c6;
  display: flex;
  justify-content: center;
}

.modal-body {
  color: #000000;
}

.voyant {
  background-image: url(../img/porteur.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  height: 480px;
}

@media (max-width: 512px) {
  .voyant {
    height: 300px;
  }
}

.text-left {
  text-align: left;
}

.btn-isabella {
  position: relative;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px #1c032a;
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  background: transparent linear-gradient(90deg, #610F7F 0%, #2F0147 50%, #610F7F 100%) 0% 0% no-repeat padding-box;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffff;
  gap: 10px;
  font-weight: bold;
  border: 1px solid #1c032a;
  outline: none;
  overflow: hidden;
  font-size: 15px;
  width: 300px;
  height: 50px;
}

.btn-isabella:hover, .btn-isabella:active {
  background: transparent linear-gradient(90deg, #E2C2C6 0%, #2F0147 30%, #2F0147 70%, #E2C2C6 100%) 0% 0% no-repeat padding-box;
  color: #E2C2C6;
}

.titre1 {
  font-size: 24px;
}

.titre1, .titre2, .titre-carte {
  letter-spacing: 0.34px;
  color: #2F0147;
  text-transform: uppercase;
  opacity: 1;
  font-family: "Signika";
  font-weight: bold;
  text-align: center;
  line-height: normal;
  text-shadow: #000000;
}

.error {
  background-color: rgba(248, 72, 49, 0.921);
  padding: 10px;
  border-radius: 8px;

}

.form-check-input:checked {
  background-color: #2F0147 !important;
  border-color: #2F0147 !important;
}

.text-form-end {
  text-align: justify;
  font-size: small;
}

.loading {
  background-image: url(../img/thinking.gif);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  height: 350px;
}

.pointer {
  cursor: pointer;
}