#form-in-container{
    max-width: 1500px;
    max-height: 1080px;
    width: 100%;
    overflow-y: auto;
    text-align: center;
}

.divButton {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.btn_valide {
    background-color: var(--main-color-secondaire);
    color: white;
    height: 100%;
    font-size: 1em;
}

.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.btn {
    border-radius: 1em;
    padding: 5px 15px;
    border: none;
    margin: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inBox input[type='text'],
.inBox input[type='datetime-local'],
.inBox input[type='number'],
.inBox input[type='mail'],
.inBox input[type='password'],
.inBox input[type='date'],
.inBox select,
.inBox textarea, .select2-container--default .select2-selection--multiple{
    width: 90%;
    text-align: center;
    opacity: 0.9;
    border-radius: 10px;
    max-width: 90%;
    background-color: var(--main-color-navbar-text);
    border: 2px solid var(--main-color-secondaire);
    padding: 0.5em 1em;
}

::placeholder {
  color: var(--chocolat-lait);
}


.container-box {
    display: flex;
    overflow-y: auto;
    height: auto;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: center;
    padding: 5px;
}

.boxShadow {
    box-shadow: var(--chocolat-lait) 0px 1px 2px 0px, var(--chocolat-lait) 0px 1px 3px 1px;
}
.box {
    width: calc(50% - 40px);
    max-width: 500px;
    max-height: 900px;
    height: auto;
    margin: 20px auto;
    border-radius: 1em;
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    justify-content: flex-start;
    overflow-y: visible;
}

.inBox {
    width: 100%;
    display: flex;
    margin-top: 5px;
    margin-bottom: 5px;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
}

.inBox label {
    width: auto;
    text-align: center;
}

.informations .inBox {
    width: 100%;
    margin-bottom: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.informationsContenu {
    height: auto;
    width: calc(100% - 30px);
    margin: 5px 15px;
}

@media screen and (max-width: 966px){

    #form-in-container {
    width: 100%;
}

.box {
    width: calc(100% - 40px);
    max-height: none;
}

    }
