
/* début style formulaire de contact */





    .contact-general {
        display: none;
        position: fixed;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%; /* Ajustez la largeur selon vos besoins */
        padding: 20px;
        /*background-color: hsl (145, 30%, 20%);*/
        background-color: #f9f9f9;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        z-index: 1000; /* Assurez-vous que le conteneur est au-dessus des autres éléments */
    }





/* Style général du formulaire */
form {
    /* max-width: 600px; */
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	    font-family: Jost;
}


/* Style général du formulaire */
.cadreapresform {
    /* max-width: 600px; */
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 20px;
    padding-right: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	    font-family: Jost;
}

/* Style général du formulaire */
.cadrecredit {
    /* max-width: 600px; */
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 20px;
    padding-right: 20px;
    border: 0px solid #ccc;
    border-radius: 10px;
   /* background-color:  rgba(249, 249, 249, 0.5);*/
   /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/
	    font-family: Jost;
}

/* Style des labels */
label {
    display: block;
    margin-bottom: 4px;
    font-weight: bold;
    color: #333;
	    font-family: Jost;
}

/* Style des champs de saisie */
input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
    width: 100%;
    padding: 5px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
	    font-family: Jost;
}

/* Style du bouton d'envoi */
input[type="submit"] {
  background-color: hsl(145, 30%, 20%); 
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
	font-weight:bold;
    transition: background-color 0.3s;
	    font-family: Jost;

}

input[type="submit"]:hover {
  background-color: hsl(145, 30%, 40%); 
}

/* Style du titre */
h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}
/* fin style formulaire de contact */


.centered-hr {
   /*  width: 50%;
    margin: 10px auto; /* 10px de marge verticale et auto pour centrer horizontalement */
	width: calc( 100% - 400px );
    margin-top: 0px; 
    margin-bottom: 10px; 
    margin-left: 200px; 
    margin-right: 200px; 
    border: 0;
    border-top: 1px solid #000; /* Couleur et épaisseur du trait */
}

/* Style du bouton d'envoi */
.btn_connexion {
  background-color: hsl(145, 30%, 20%); 
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
	font-weight:bold;
    transition: background-color 0.3s;
	    font-family: Jost;

}


/* début responsive */

/* Règles pour les écrans de largeur inférieure ou égale à 800px */
@media (min-width: 800px) {

    .contact-general {
        position: fixed;
		top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%; 
        max-width: 500px; 
		padding: 20px; 
				font-size: 16px !important;
    }
	
form {
    padding: 20px;
	width: calc(100% - 40px); 
}


	
.centered-hr  {
    display: block;
}
	




.cadrecredit {
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 20px;
    padding-right: 20px;

}

.cadreapresform {
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 20px;
    padding-right: 20px;

}




	
	
input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
    padding: 5px;
    margin-bottom: 10px;
    font-size: 16px;

}
}

/* milieu responsive */

/* Règles pour les écrans de largeur supérieur ou égale à 800px */
@media (max-width: 800px) {

    .contact-general {

        width: calc(100% - 20px); 
        max-height: calc(100% - 57px); 
		padding: 10px; 
		font-size: 14px !important;
		margin:0px;

    }
	
form {
    padding: 10px;
	width: calc(100% - 20px); 
}
	

	
.centered-hr  {
    display: none;
}
	


	
input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
    padding: 3px;
    margin-bottom: 6px;
    font-size: 14px;

}




.cadrecredit {
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 10px;
    padding-right: 10px;
		width: calc(100% - 20px); 

}


.cadreapresform {
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 10px;
    padding-right: 10px;
		width: calc(100% - 20px); 

}


}

/* fin responsive */

