/* page.module.css */
.page_homeBackground__lgKRB {
  height: 100vh;
  width: 100%;
  font-family: "Poppins", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #fbf2f2;
}
.page_homeBackground__lgKRB::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/Assets/imgs/Occitanie-205.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.25;
  z-index: 0;
}

.page_container__jZF7q {
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "poppins";
}
.page_roue__iohef {
  margin: -50px;
  z-index: 5;
}

.page_partners__WcdU5 {
  height: 10vh;
  margin-top: 45px;
  display: flex;
  width: 100%;
  max-height: 150px;
  justify-content: center;
}
.page_partners__WcdU5 img {
  object-fit: scale-down;
  height: auto;
  width: auto;
  max-height: 150px;
  margin: 0 15px;
}

.page_disabled-segment__wTucA {
  opacity: 0.3; /* Rend le segment semi-transparent */
  pointer-events: none; /* Désactive l'interaction avec le segment */
  filter: grayscale(100%); /* Effet visuel facultatif */
}

.page_disabled-lien__IhGmz {
  pointer-events: none; /* Désactive le clic sur le lien */
  opacity: 0.3; /* Facultatif : rend le lien moins visible */
}

/* components/LoginForm.module.css */

.LoginForm_formContainer__EtPCC {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    width: 350px;
    height: 350px;
    border-radius: 25px;
    background-color: rgba(255, 255, 255, 0.95);
    text-align: center;
    box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.2);
    position: relative; /* Nécessaire pour le spinner */
  }
  
  .LoginForm_formGroup__YA0YT {
    margin-bottom: 1rem;
  }
  
  .LoginForm_errorMessage__TVY0U {
    color: red;
  }
  
  .LoginForm_spinnerContainer__RkDzo {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .LoginForm_spinner___Zrj1 {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: -2px 0 0 -2px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-top: 2px solid #3498db;
    border-radius: 50%;
  }
  
.RoueSVG_disabledSegment__NyczW {
    opacity: 0.3; /* Rend le segment semi-transparent */
    pointer-events: none; /* Désactive l'interaction avec le segment */
    filter: grayscale(100%); /* Effet visuel facultatif */
    fill: grey;
  }
  
  .RoueSVG_disabledLien__An7Fo {
    pointer-events: none; /* Désactive le clic sur le lien */
    opacity: 0.3; /* Facultatif : rend le lien moins visible */
    fill: grey;
  }
