#white-papers .white-paper-infos {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    align-items: flex-start;
    margin: 4rem 0;
}

#white-papers .infos-box {
    width: 40%;
}

#white-papers .file-box {
    width: 50%;
    height: 55rem;
}

#white-papers h2 {
    margin-top: 2rem;
    color: var(--primary);
    font-weight: 700;
    font-size: 2rem;
    text-transform: uppercase;
}

#white-papers h2 span {
    display: block;
    color: var(--accent);
    margin-top: 1rem;
}

#white-papers p {
    text-align: justify;
    font-size: 1.2rem;
    margin-top: 2rem;
}

#white-papers .register-box {
    margin: 0 10rem;
}

#white-papers .register-box p {
    text-align: center;
}

#register-form {
    margin-top: 3rem;
}

#white-papers .result {
    padding: 1rem 1rem 0 0;
    text-align: right;
}

/* -------------- Petits écrans -------------- */
@media all and (max-width:750px) {

    #white-papers .white-paper-infos {
        flex-direction: column;
        margin: 2rem 1rem;
    }

    #white-papers .infos-box {
        width: 100%;
    }

    #white-papers .file-box {
        width: 100%;
        height: 22rem;
        margin-top: 2rem;
    }

    #white-papers .register-box {
        margin: 0 1rem;
    }
}

/* -------------- Fin Petits écrans -------------- */