* {
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    color: #5A5A58;
}

main {
    width: 100vw;
    height: 79vh;
    display: flex;
    /* flex-direction: column; */
    justify-content: space-evenly;
}

.cadre_orange {
    border-style: solid;
    border-width: 1px;
    border-radius: 10px;
    border-color: #BD212F;
    width: 65%;
    height: 80%;
    margin: auto;
    overflow-y: scroll;
    padding: 5px;
}

#new_invit {
    border-style: solid;
    border-width: 1px;
    border-radius: 10px;
    border-color: #BD212F;
    width: 25%;
    margin: auto;
    height: 80%;
    position: relative;
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.pt_create {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    height: 90%;
}

#lib_invit {
    border-style: solid;
    border-width: 1px;
    border-radius: 5px;
    border-color: #5A5A58;
    position: absolute;
    left: 2%;
    top: -10px;
    background-color: white;
    padding-left: 5px;
    padding-right: 5px;
}

.btn_orange {
    background-color: #BD212F;
    color: white;
    font-size: large;
    border: none;
    border-radius: 6px;
    width: 30%;
    cursor: pointer;
}