.body-saisie-code {
    background-image: url("images/background-general.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
@media (min-width: 1081px) {
    .body-saisie-code {
        background-image: url("images/santa-01.png"), url("images/background-general.jpg");
        background-position: left bottom, center top;
        background-repeat: no-repeat, no-repeat;
        background-size: 40% auto, 100% 100%;
    }
}

.page-enter-code {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (min-width: 1081px) {
    .page-enter-code {
        display: grid;
        grid-template-columns: 40% 60%;
    }
}

.page-enter-code .container-logo,
.page-enter-code .container-input {
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media (min-width: 1081px) {
    .page-enter-code .container-logo,
    .page-enter-code .container-input {
        align-self: stretch;
    }    
}

.page-enter-code .container-logo {
    display: flex;
    justify-content: center;
    margin-top: center;
}
@media (min-width: 1081px) {
    .page-enter-code .container-logo {
        justify-content: start;
        margin-top: 5%;
    }
}

.page-enter-code .container-input {
    justify-content: center;
}

.page-enter-code .container-logo .logo {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 85%;
}
@media (min-width: 1081px) {
    .page-enter-code .container-logo .logo {
        display: flex;
        flex-direction: row;
        justify-content: center;
        width: auto;
    }
}

.page-enter-code .container-input .fleche {
    display: none;
    flex-direction: row;
    justify-content: center;
    width: 100%;
}
@media (min-width: 1081px) {
    .page-enter-code .container-input .fleche {
        display: flex;
    }
}

.page-enter-code .container-input .fleche img,
.page-enter-code .container-logo .logo img {
    width: 70%;
    height: auto;
    margin: 16px 0 40px 0;
}

.page-enter-code .container-logo .logo img {
    width: 100%;
    margin: 0;
}

.page-enter-code .container-input .fleche-mobile {
    display: flex;
    flex-direction: column;
    justify-content: end;
}
@media (min-width: 1081px) {
    .page-enter-code .container-input .fleche-mobile {
        display: none;
    }
}

.page-enter-code .container-input .fleche-mobile img {
    width: 350px;
    height: auto;
}

.page-enter-code .container-input .input-zone {
    padding: 16px;
    background-color: var(--christmas-red);
    border-radius: 5px;
    height: max-content;
}
@media (min-width: 1081px) {
    .page-enter-code .container-input .input-zone {
        width: fit-content;
    }
}

.page-enter-code .container-input .input-zone .input {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.page-enter-code .container-input .input-zone .input input,
.page-enter-code .container-input .input-zone .input input::placeholder {
    line-height: 42px;
    font-size: 42px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    height: max-content;
    color: var(--christmas-green);
}
  
.page-enter-code .container-input .input-zone .input input {
    border-radius: 8px;
    outline: none;
    border:none;
}

.page-enter-code .container-input .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-weight: 900;
    font-size: 1.5rem;
    cursor: pointer;
}
    
.page-enter-code .container-input .input-zone .error-message {
    color: #ffffff;
}


.page-enter-code .logo-mobile {
    display: flex;
    justify-content: center;
    padding: 24px 0;
}
@media (min-width: 1081px) {
    .page-enter-code .logo-mobile {
        display: none;
    }
}

.page-enter-code .logo-mobile img {
    width: 250px;
    height: auto;
}