body {
    box-sizing: border-box;
    height: 100vh;
    padding: 0;
    font-size: 14px;
}

body #document {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

#corps {
    display: flex;
    flex-direction: column;
    width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 40px 50px;
    box-sizing: border-box;
    box-shadow: 0 4px 44px #8A97A326;
}

#corps * {
    box-sizing: border-box;
}

#corps form.filtre {
    width: 100%;
    margin: auto;
}

@media screen and (max-width: 780px) {
    #corps div.loginImage {
        display: none;
    }
}

#corps h1, #corps legend {
    font-family: 'HelvNeueOrange', Arial, sans-serif;
    font-weight: 700;
    line-height: 1;
    color: #000;
}

#corps h1 {
    font-size: 34px;
    letter-spacing: -1px;
}

#corps div.logo img.logoImage {
    max-width: 200px;
    height: 110px;
    object-fit: contain;
}

#corps fieldset {
    border: 0;
}

#corps legend {
    position: relative;
    margin-bottom: 1rem;
    letter-spacing: -.5px;
    text-decoration: none;
    font-size: 25px;
}

#corps legend::after {
    content: '';
    width: 18px;
    height: 4px;
    background-color: #f16e00;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(100%);
}

#corps .filtre td {
    width: 100%;
    padding: 0 0 10px 0;
}

#corps .filtre td input:not([type='submit']) {
    width: 100%;
    font-size: 13px;
    color: #000;
    border: 2px solid #ccc;
    border-radius: 0;
    padding: 10px;
    transition: border-color .2s ease-in-out;
}

#corps .filtre td input:not([type='submit']):focus {
    outline: none;
    border-color: #000;
}

#corps .filtre input[type='submit'] {
    background: #000;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    border-radius: 0;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid #000;
    transition: all .2s;
}

#corps .filtre input[type='submit']:hover {
    color: #000;
    background-color: #fff;
    text-decoration: none;
}

#corps .filtre tfoot td {
    text-align: left;
}

#corps .btnLink {
    position: relative;
    color: #000;
    text-decoration: none;
}

#corps .btnLink::after {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-top: 2px solid #f16e00;
    border-right: 2px solid #f16e00;
    transform: rotate(45deg);
    margin-left: 7px;
}

#corps .btnLink:hover {
    text-decoration: underline;
}

#corps div.loginImage img {
    display: block;
    width: 100%;
    height: 670px;
    object-fit: cover;
}

#corps table.withLabel tbody tr {
    display: flex;
    margin-bottom: 10px;
}

#corps table.withLabel tbody tr th {
    text-align: left;
}

#corps table.withLabel tbody tr.alignCenter {
    align-items: baseline;
}