/* Ajoutez ce CSS dans votre fichier de styles (style.css) ou incluez-le directement dans votre fichier Blade */

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    height: 100vh;
    text-align: center;

}



h2 {
    text-align: center;
  color: #333;
}

label {
    margin-bottom: 8px;
}

.container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px;
    margin-left: 40%;
    margin-top: 5%;
    
    
    justify-content: center;
    align-items: center;
}

button {
    background-color: #4caf50;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
  
button:hover {
    background-color: #45a049;
}

#google {
    background-color: rgb(109, 109, 109);
    color: #fff;
    padding: 10px;
    margin-top: 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
}
  
#google:hover {
    background-color: #535453;
}

#connexionSection{
    display: grid;
}

input {
    padding: 10px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
  

form {
    display: flex;
    flex-direction: column;
  }

#adresse {
    width : 300px;
}

#creer {
    background-color: #4caf50;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
}
  
#creer:hover {
    background-color: #45a049;
}



/* Ajoutez les styles ci-dessus à votre fichier de style ou à votre balise style dans le fichier Blade */

 /* Styles de base pour le formulaire */
 body {
    font-family: Arial, sans-serif;
    padding: 20px;
}

/* Style pour la popover personnalisée */
.custom-popover {
    position: absolute;
    background: #000;
    color: #fff;
    border-radius: 3px;
    padding: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    display: none; /* caché par défaut */
    z-index: 10;
    width: 250px; /* Largeur du popover */
    font-size: 0.9em;
}

/* Flèche au-dessus du popover */
.custom-popover:before {
    content: "";
    position: absolute;
    top: -20px; /* Ajustez si nécessaire */
    left: 50%;
    margin-left: -10px;
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent #000 transparent;
}

/* Style pour l'icône d'information */
.infoIcon {
    cursor: pointer;
    font-size: 1.2em;
    color: #c00;
    margin-left: 5px;
}
    