/* Style général du corps */

/* Style pour le logo */
img {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f0f8ff;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

/* Conteneur principal */
.container {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
    width: 100%;
}

/* Titre de succès */
h1 {
    color: #28a745;
    font-size: 24px;
    margin-bottom: 20px;
}

/* Message de confirmation */
p {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
}

/* Bouton de retour */
button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #0056b3;
}

/* Pied de page */
footer {
    margin-top: 20px;
    font-size: 14px;
    color: #666;
    text-align: center;
}
