body {
    background: linear-gradient(45deg, #FC466B, #3F5EFB);
    height: 100vh;
    font-family: arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .container {
    position: relative;
  }



  form {
    background: rgba(255, 255, 255, .3);
    padding: 3rem;
    height: 330px;
    border-radius: 20px;
    border-left: 1px solid rgba(255, 255, 255, .3);
    border-top: 1px solid rgba(255, 255, 255, .3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    -moz-backdrop-filter: blur(10px);
    box-shadow: 20px 20px 40px -6px rgba(0, 0, 0, .2);
    text-align: center;
  }

  .button-menu {
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}



  p {
    color: white;
    font-weight: 500;
    opacity: .7;
    font-size: 1.4rem;
    margin-bottom: 60px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .2);
  }
    
  a {
    text-decoration: none;
    color: #ddd;
    font-size: 12px;
  }
  
  a:hover {
    text-shadow: 2px 2px 6px #00000040;
  }
  
  a:active {
    text-shadow: none;
  }





  input {
    background: transparent;
    border: none;
    border-left: 1px solid rgba(255, 255, 255, .3);
    border-top: 1px solid rgba(255, 255, 255, .3);
    padding: 1rem;
    width: 200px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    -moz-backdrop-filter: blur(5px);
    box-shadow: 4px 4px 60px rgba(0, 0, 0, .2);
    color: white;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .2);
    transition: all .3s;
    margin-bottom: 2em;
  }

  .thx {
    position: fixed; /* Fixe l'élément par rapport à la fenêtre du navigateur */
    bottom: 10px; /* Espace de 10 pixels du bas de la fenêtre */
    left: 10px; /* Espace de 10 pixels de la gauche de la fenêtre */
    background-color: rgba(0, 0, 0, 0.5); /* Fond semi-transparent moins visible */
    color: white; /* Couleur du texte */
    padding: 8px; /* Espacement intérieur réduit */
    border-radius: 5px; /* Bords arrondis */
    font-size: 14px; /* Taille de la police réduite */
    z-index: 1000; /* Assure que le texte soit au-dessus des autres éléments */
    opacity: 0.8; /* Réduit l'opacité pour le rendre moins visible */
}


  input:hover,
  input[type="email"]:focus,
  input[type="password"]:focus{
    background: rgba(255,255,255,0.1);
    box-shadow: 4px 4px 60px 8px rgba(0,0,0,0.2);
  }
      
  input[type="button"] {
    margin-top: 10px;
    width: 150px;
    font-size: 1rem;
    cursor: pointer;
  }
  
  ::placeholder {
    color: #fff;
  }



  .drop {
    background: rgba(255, 255, 255, .3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    border-left: 1px solid rgba(255, 255, 255, .3);
    border-top: 1px solid rgba(255, 255, 255, .3);
    box-shadow: 10px 10px 60px -8px rgba(0,0,0,0.2);
    position: absolute;
    transition: all 0.2s ease;
  }



  .drop-1 {
    height: 80px; width: 80px;
    top: -20px; left: -40px;
    z-index: -1;
  }
  
  .drop-2 {
    height: 80px; width: 80px;
    bottom: -30px; right: -10px;
  }
  
  .drop-3 {
    height: 100px; width: 100px;
    bottom: 120px; right: -50px;
    z-index: -1;
  }
  
  .drop-4 {
    height: 120px; width: 120px;
    top: -60px; right: -60px;
  }
  
  .drop-5 {
    height: 60px; width: 60px;
    bottom: 170px; left: 90px;
    z-index: -1;
  }



  /* --------- RESPONSIVE ---------*/

  @media (max-width: 700px){
      header {
          background: none;
      }
  
      .navbar .links,
      .navbar .action-button {
          display: none
      }
      .navbar .button-menu {
          display: block;
      }
  
  
      .button-menu-ph {
          display: block;
      }

}

/* --------- T ---------*/


li {
  list-style-type: none;

}

a {
  text-decoration: none;
  color:  white;
  font-size:  1rem;

}

a:hover{
  color: gray;
}


header {
  position: relative;
  padding: 0 2rem;
  background-color: rgba(0, 0, 0, 0.383);


}

.navbar {
  width: 100%;
  max-width: 1200px;
  height: 60px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;


}


.navbar .logo a {
  font-size: 1.5rem;
  font-weight: bold;
}

.navbar .links {
  display: flex;
  gap: 2rem;
}

.navbar .button-menu {
  color: #fff ;
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
}

.buttons {
  display: flex;
  gap: 10px;
}

.action-button {
  background-color: rgb(19, 163, 149);
  color: #120d31;
  border: 1px solid rgb(19, 163, 149);
  padding: 0.5rem 1.2rem;
  outline: none;
  font-size: 0.9rem;
  font-weight: bold;
  cursor:  pointer;
}

.action-button:hover {
  color: #fff;
  border: 1px solid #fff;
}
.Pro {
  background-color:  transparent;
  color: #fff;
  border: 1px solid #fff;
}

.Pro:hover {
  background-color: #fff;
  color: #120d31;
}

/* --------- MENU ---------*/

.button-menu-ph {
  display: none;
  height: 0;
  position: absolute;
  right: 2rem;
  top: 60px;
  width: 200px;
  background:rgba(128, 128, 128, 0.2) ;
  backdrop-filter: blur(15px);
  border-radius: 10px;
  overflow: hidden;
  transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.button-menu-ph.open {
  height: 280px;
}


.button-menu-ph li {
  padding: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;

}

.divider {
  height: 1px;
  background-color: #fff;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
}


.button-menu-ph .action-button {
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.button-ph {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.button-menu-ph1 {
  display: flex;
  flex-direction: column;
  justify-content: center;   
  gap: 10px;

}


/* --------- STYLES POUR LE BOUTON MENU --------- */
.button-menu {
  position: fixed; /* Fixe le bouton dans une position stable sur la page */
  top: 20px;      /* Distance par rapport au haut de la fenêtre */
  left: 20px;     /* Distance par rapport à la gauche de la fenêtre */
  z-index: 1000;  /* S'assurer que le bouton soit au-dessus de tous les autres éléments */
  background-color: rgba(255, 255, 255, 0.1); /* Fond transparent léger */
  border-radius: 50%; /* Forme ronde */
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

.button-menu i {
  color: white;   /* Couleur de l'icône */
  font-size: 1.5rem; /* Taille de l'icône */
}

.button-menu:hover {
  background-color: rgba(255, 255, 255, 0.2); /* Fond un peu plus visible au survol */
}

/* --------- AJUSTEMENT POUR LES PETITS ÉCRANS --------- */
@media (max-width: 700px) {
  .button-menu {
      top: 10px;   /* Réduit l'espace en haut pour les petits écrans */
      left: 10px;  /* Réduit l'espace à gauche */
      width: 40px;
      height: 40px;
  }

  .button-menu i {
      font-size: 1.2rem; /* Réduit la taille de l'icône sur les petits écrans */
  }
}

