.body-saisie-code {
    background-image: url("images/background-general.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 100vh;
}

.page-enter-code {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.page-enter-code .left-part-pc {
    display: none;
}

.page-enter-code .right-part-pc {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    row-gap: 20px;
    padding: 20px;
    padding-bottom: 100px;
}

@media (min-width: 1081px) {
    .page-enter-code {
        flex-direction: row;
    }

    .page-enter-code .left-part-pc {
        display:flex;
        width: 50vw;
        height: 100vh;
        background-image: url("images/home4-left-part-pc.svg");
        background-position: center center;
        background-repeat: no-repeat;
        background-size: auto 80%;
    }

    .page-enter-code .right-part-pc {
        width: 50vw;
        justify-content: end;
    }    
}

.input-zone {
    padding: 16px;
    background-color: var(--cadisco-primary-color);
    border-radius: 5px;
    height: fit-content;
    width: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (min-width: 1081px) {
    .input-zone {
        width: fit-content;
    }
}

.input-zone .error-message {
    font-size: 42px;
    color: var(--red);
}

.input-zone .input {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.input-zone .input input,
.input-zone .input input::placeholder {
    line-height: 64px;
    font-size: 64px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    height: max-content;
    color: var(--cadisco-primary-color);
}
@media (min-width: 1081px) {
    .input-zone .input input,
    .input-zone .input input::placeholder {
        line-height: 42px;
        font-size: 42px;
    }
}

.input-zone .input button {
    border:none;
    background: none;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url("images/submit-button-background.png");
    background-size:100% 100%;
    padding: 8px 24px;
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 900;
    cursor: pointer;
}
@media (min-width: 1081px) {
    .input-zone .input button {
        font-size: 1.5rem;
    }
}

.reglement {
    display: none;
}
@media (min-width: 1081px) {
    .reglement {
        display: flex;
    }
    .reglement a {
        color: #ffffff;
        text-transform: uppercase;
    }
}

.reglement-lien-mobile {
    color: #ffffff;
    text-transform: uppercase;
    margin: 20px;
    font-size: 24px;
}

.home-logo-mobile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: max-content;
}

.home-logo-mobile img{
    width: 80vw;
    height: auto;
}
@media (min-width: 1081px) {
    .home-logo-mobile {
        display: none;
    }
}    

.home-text-mobile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: max-content;
    height: 50vh;
}
@media (min-width: 1081px) {
    .home-text-mobile {
        display: none;
    }
}

.home-text-mobile img {
    width: 80vw;
    height: auto;
}