/* Variables de color */
:root {
    --color-background: #074B43;
    --color-button-border: white;
    --color-button-hover: #074B43;
    --color-text: white;
    --color-code-background: #50ADA2;
}

#newsletter {
    width: 100%;
    margin-top: 70px;
    margin-bottom: 70px;
}

#newsletter .contenidor_centrat {
    display: flex;
    align-items: center;
    justify-content: center;
}

#newsletter .btn_unificat {
    border-radius: 50px;
    background: transparent;
    border: 1px solid var(--color-button-border) !important;
    cursor: pointer;
}

#newsletter .btn_unificat:hover {
    background: var(--color-button-hover);
    cursor: pointer;
}

.newsletter_left,
.newsletter_right {
    width: 50%;
    padding: 10%;
    display: flex;
    flex-direction: column;
}

.newsletter_left .titol {
    font-size: 35px;
    color: var(--color-text);
}

.newsletter_left .subtitol {
    font-size: 16px;
    display: flex;
    align-items: center;
    color: var(--color-text);
    width: 100%;
    text-align: left;
}

.codi_newsletter {
    padding: 7px 25px;
    background: var(--color-code-background);
    border-radius: 50px;
    margin: 10px;
    font-weight: bold;
    color: var(--color-text);
}

@media screen and (max-width: 900px) {
    #newsletter .contenidor_centrat {
        flex-wrap: wrap;
    }

    .newsletter_left,
    .newsletter_right {
        width: 100%;
        padding: 5%;
    }
}