@font-face {
    font-family: 'SFPro';
    src: url('typo/SFProText-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
body {
    font-family: 'SFPro', sans-serif;
    background-color: #557657;
    color: white;
    margin: 0;
    padding: 0;
}
.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    padding: 20px;
    margin: auto;
}
.left-column {
    margin-left: 10%;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.left-column2 {
    display: grid;
    justify-content: center;
    align-items: center;
}
.right-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.logo {
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 20px;
}
.contact-info {
    font-size: 1.2em;
    margin-bottom: 20px;
}
.newsletter {
    font-size: 1.2em;
    margin: 0% 10%;
}
.newsletter2 {
    margin : 0 12% 0 12%;
    display: grid;
    text-align: center;
}
input[type="email"] {
    padding: 12px;
    width: 120%;
    /*max-width: 700px;*/
    font-size: 1.5em;
    border: 2px solid #F9F3E5;
    background-color: #557657;
    color: #F9F3E5 !important;
    border-radius: 8px;
    font-family: 'SFPro', sans-serif;
}
input[type="email"]:focus {
    outline: none;
    border-color: #F9F3E5;
    background-color: #557657;
}
label {
    font-size: 1em;
    color: #F9F3E5;
    font-weight: 300;
}
input[type="email"]::placeholder {
    color: #F9F3E5;
    text-align: center;
    font-family: 'SFPro', sans-serif;
}
.checkbox-container {
    display: flex;
    align-items: center;
}
.checkbox-container input {
    margin-right: 10px;
}
checkbox {
    background-color: #557657;
}
button {
    padding: 12px 20px;
    background-color: #F9F3E5;
    color: #4C6B4B;
    font-weight: bold;
    border: none;
    cursor: pointer;
    font-size: 1.5em;
    border-radius: 8px;
    width: 130%;
    /*max-width: 400px;*/
    font-family: 'SFPro', sans-serif;
}
button:hover {
    background-color: #E1B29C;
}
.g-recaptcha {
    transform: scale(0.80); /* Ajuste la taille du widget si nécessaire */
    transform-origin: 0 0;
    margin: 0 !important;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .left-column, .right-column {
        flex: none;
        width: 100%;  /* Assurez-vous que les colonnes occupent toute la largeur de l'écran */
        text-align: center;
        margin-bottom: 20px;  /* Espacement entre les colonnes */
    }

    .newsletter2 {
        margin: 0 5%;  /* Ajustez la marge pour que le formulaire ne soit pas trop large */
    }
    input[type="email"] {
        padding: 12px;
        max-width: 90%;
        /*max-width: 700px;*/
        font-size: 1.5em;
        border: 2px solid #F9F3E5;
        background-color: #557657;
        color: #F9F3E5 !important;
        border-radius: 8px;
        font-family: 'SFPro', sans-serif;
    }

    button {
        padding: 12px 20px;
        background-color: #F9F3E5;
        color: #4C6B4B;
        font-weight: bold;
        border: none;
        cursor: pointer;
        font-size: 1.5em;
        border-radius: 8px;
        max-width: 100%;
        /*max-width: 400px;*/
        font-family: 'SFPro', sans-serif;
    }
}
.logos_partenaires {
    display: flex;
}