.newsletter-container {
    margin: 0px auto;
    padding: 15px;
    max-width: max-content;
    text-align: center;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.newsletter-container label {
    font-size: 16px;
    margin-bottom: 10px;
    display: block;
}

.newsletter-input-group {
    display: flex; /* Met le champ et le bouton sur la même ligne */
    justify-content: center; /* Centre horizontalement le groupe */
    margin-top: 10px;
}

.newsletter-input-group input[type="email"] {
    flex: 1; /* Permet au champ de texte de prendre le reste de la ligne */
    padding: 0px 10px 0px 10px;
    font-size: 10px;
    height: 40px;
    border: 1px solid #ccc;
    border-radius: 8px; /* Coins arrondis à gauche */
    outline: none;
}

.newsletter-input-group button {
    font-size: 14px;
    color: #fff;
    background-color: #5a9;
    border: none;
    border-radius: 0 4px 4px 0; /* Coins arrondis à droite */
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-input-group button:hover {
    background-color: #48a;
}
