/* =========================
📌 RESET & BASE
========================= */


* {
    box-sizing: border-box;
}


html,
body {

    margin: 0;
    height: 100%;
    padding: 0;

}


body {
    display: flex;

    flex-direction: column;
    font-family:
        Arial,
        sans-serif;

    line-height: 1.6;

    color: var(--text-color);

    background: #fff;

}



/* Liens */

a {

    color: var(--primary-color);

    text-decoration: none;

}


a:hover {

    text-decoration: underline;

}



/* Suppression scrollbar */

html,
main {

    /*overflow-y:scroll;*/

    scrollbar-width: none;

}


html::-webkit-scrollbar,
main::-webkit-scrollbar {

    display: none;

}

.newsletter-btn {
    display: inline-flex;
    align-items: center;
    background: var(--primary-color);
    /* ton vert  */
    color: #fff;
    height: 60px;
    padding-left: 40px;
    border-radius: 0 30px 30px 0;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}


/* 👇 encoche à gauche */
.newsletter-btn::before {
    content: "";
    position: absolute;
    left: -30px;
    width: 80px;
    height: 80px;
    background: #fff;
    /* couleur du fond */
    border-radius: 50%;
}

/* texte */
.newsletter-btn span:first-child {
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 10px;
}

/* bloc rouge */
.newsletter-btn .arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f44336;
    width: 70px;
    height: 100%;
    border-radius: 0 30px 30px 0;
    font-size: 24px;
}