/* Police personnalisée */
@font-face {
    font-family: "police_principale";
    src: url("/police/Philosopher-Regular.ttf");
}

/* Style global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Style pour la page */
body {
    font-family: police_principale;
}

input {
	font-family: police_principale;
}

select {
	font-family: police_principale;
}

textarea {
	font-family: police_principale;
}

.bouton_1 {
    width: 100%;
    max-width: 400px;
    padding: 12px;
    background: linear-gradient(180deg, blue, lightblue);
    color: white;
    text-shadow:1px 1px 1px black;
    border: none;
    border-radius: 40px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(99,102,241,0.4);
    transition: transform .3s ease, box-shadow .3s ease;
}

.bouton_1:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 60px rgba(99,102,241,0.6);
}

.bouton_2 {
	padding: 5px;
    padding-left: 20px;
    padding-right: 20px;
	margin-top: 5px;
	margin-bottom: 5px;
    background: linear-gradient(180deg, blue, #7D80FF);
    color: white;
    text-shadow:1px 1px 1px black;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(99,102,241,0.4);
    transition: transform .3s ease, box-shadow .3s ease;
}

.bouton_2:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 60px rgba(99,102,241,0.6);
}


/* Conteneur pour resultat */
.container-resultat {
    background-color: white;
	margin-top: 20px;
	margin-bottom: 40px;
	--padding: 40px;
    border-radius: 8px;
    width: 95%;
    max-width: 1000px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}
