/* Page de confirmation */
.confirmation-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px; /* Espacement horizontal */
    margin-bottom: 60px;
}

.confirmation-container {
    background-color: #fafafa;;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #ddd;
    max-width: 500px;
    width: 100%; /* Prend toute la largeur disponible jusqu'à max-width */
    text-align: center;
    box-sizing: border-box;    
    margin: 30px;
}


.confirmation-container h2 {
    color: #a6784d;
    font-size: 24px;
    margin-bottom: 10px;
}

.confirmation-container p {
    color: #555;
    font-size: 16px;
    margin-bottom: 20px;
}

.button {
    padding: 10px 20px;
    background-color: #516843;
    color: white;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}

.button:hover {
    background-color: #50361f;
}

