body {
    font-family: Poppins, sans-serif;
    background-image: url('assets/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    padding: 20px;
    color: #333;
}

.header {
    text-align: center;
    padding: 20px;
}

.header img {
    width: 200px; /* Ajuste la taille selon tes besoins */
}

.container {
    max-width: 600px;
    margin: auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9); /* Légère transparence pour une meilleure visibilité */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center; /* Centrage du texte pour tous les éléments dans .container */
}

form {
    display: flex;
    flex-direction: column;
    align-items: center; /* Alignement des éléments de formulaire au centre */
}

label {
    margin-bottom: 5px;
}

input {
    padding: 8px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: center; /* Centrage du texte à l'intérieur des champs de saisie */
}

button {
    background-color: #08ddb8;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: block; /* Pour permettre le centrage */
    margin: 10px auto; /* Centrage du bouton */
}

button:hover {
    background-color: #08A286;
}

.resultat {
    margin-top: 20px;
    font-size: 16px;
    color: #007BFF;
    text-align: center; /* Assure que le texte de résultat est centré */
}

.centered {
    text-align: center;
}

.calendly-link {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #08ddb8;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    /* Assure le centrage du lien */
    text-align: center;
}

.calendly-link:hover {
    background-color: #08A286;
}
