@font-face {
    font-family: "AlpineProto";
    font-weight: 300;
    font-display: swap;
    src: url("../fonts/AlpineProto-Light.woff2") format("woff2")
}

@font-face {
    font-family: "AlpineProto";
    font-weight: 700;
    font-display: swap;
    src: url("../fonts/AlpineProto-Bold.woff2") format("woff2")
}

body {
    font-family: "AlpineProto", sans-serif;
    padding: 20px;
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    background: url(../images/bg.png) no-repeat center/cover;
    text-transform: uppercase;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

input, textarea, select, button {
    font-size: 20px;
    color: #fff;
    font-family: "AlpineProto", sans-serif;
    font-weight: 300
}

*, *:after, *:before {
    box-sizing: border-box
}

main {
    display: flex;
    flex-direction: row;
    gap: 50px;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%
}

main #image {
    max-width: 544px;
    min-width: 445px;
    height: 685px
}

main #image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

main #content {
    width: 100%;
    max-width: 564px;
    height: 685px;
    position: relative
}

#merci {
    display: none;
    text-align: center;
    flex-direction: column;
    gap: 20px
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%
}

.champ {
    background: rgba(0, 0, 0, 0);
    border: 1px solid #fff;
    height: 50px;
    font-size: 20px;
    font-weight: 300;
    border-radius: 0;
    line-height: 50px;
    display: block;
    width: 100%;
    padding: 0 22px;
    color: #fff;
    text-transform: uppercase;
    outline: none
}

.champ::-moz-placeholder {
    color: #fff
}

.champ::placeholder {
    color: #fff
}

option {
    background: #fff;
    color: #015cff
}

a {
    color: inherit;
    text-decoration: underline
}

.politique {
    font-size: 17px;
    line-height: 25px
}

.politique p {
    margin: 0;
    font-weight: 700
}

.legend {
    font-size: 12px;
    margin-top: -13px
}

.legend2 {
    font-size: 14px;
    line-height: 25px;
    margin-top: -5px
}

.optin {
    display: flex;
    flex-direction: row;
    gap: 15px
}

.optin label {
    width: 100%;
    display: block;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    cursor: pointer
}

.optin-contact {
    flex-direction: row;
    flex-wrap: wrap
}

.optin-contact label:not(:first-child) {
    width: 130px
}

.optin-contact label:first-child {
    width: auto
}

.groupe-radio {
    display: flex;
    flex-direction: row;
    gap: 15px;
    font-size: 14px
}

.optin-radio {
    flex-direction: row;
    justify-content: space-between
}

.optin-radio label {
    white-space: nowrap
}

#popin {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    padding: 60px 0 0 0
}

#popin #fermer {
    position: absolute;
    top: 0px;
    right: 0px
}

#popin p {
    margin: 0;
    font-size: 20px;
    line-height: 22px;
    font-weight: 300
}

#popin p strong {
    font-weight: 700
}

input[type=checkbox], input[type=radio] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border: 1px solid #fff;
    accent-color: #fff;
    margin: 0;
    position: relative;
    cursor: pointer
}

input[type=checkbox]:before, input[type=radio]:before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    scale: 0;
    background: #fff
}

input[type=checkbox]:checked::before, input[type=radio]:checked::before {
    scale: 1
}

.button {
    background: #fff;
    color: #0167ff;
    text-align: center;
    width: 100%;
    height: 50px;
    font-size: 20px;
    border: none;
    font-weight: 300;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 0;
    transition: all .45s ease-in-out;
    text-transform: uppercase;
    outline: none
}

.disabled {
    pointer-events: none;
}