*{
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
}

a, a:hover, a:active{
    color: #3869D4;
}

img{
    max-width: 100vw;
    max-height: 100vh;
}

body{
    color: #74787E;
    font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
    line-height: 1.4rem;
    min-height: 100vh;
    position: relative;
}

h1, h2, h3, h4, h5, h6{
    color: #2F3133;
    font-size: 1.5rem;
}

.conteneur{
    /*padding: 50px;*/
    /*min-height: 76vh;*/
    padding: 2rem 1rem;
    padding-bottom: 10rem;
}

footer, header{
    background-color: #F2F4F6;
    text-align: center;
    /*min-height: 12vh;*/
    padding-top: 1rem;
    padding-bottom: 1rem;
}

footer{
    color: #AEAEAE;
    font-size: 0.8rem;
    line-height: 1rem;
    bottom: 0;
    width: 100%;
}

h1, h2, textarea{
    margin-bottom: 2rem;
}

ul{
    display: block;
    margin-top: 0;
    margin-bottom: 1rem;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
}

li{
    display: list-item;
    text-align: -webkit-match-parent;
}

.bouton{
    float:left;
    width:100%;
    margin-bottom: 2rem;
}

.info{
    background-color: #F2F4F6;
    padding: 1rem;
    margin-bottom: 2rem;
}

#envoyer{
    float: right;
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    white-space: nowrap;
	padding: 4px 28px;
    font-size: 14px;
    line-height: 1.42857143;
    border-radius: 4px;
    color: #ffffff;
    outline: 0;
    background-color: #f0750d;
    background-image: none;
    border: none;
    -webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,0.125);
    box-shadow: inset 0 3px 5px rgba(0,0,0,0.125);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}    

.center-height{
    min-height: inherit;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.details{
	margin-bottom: 1rem;
}

span{
    font-weight: bold;
}

label{
    float: left;
    width: 100%;
    margin-bottom: 2rem;
}

.maintenance{
    font-style: italic;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    padding: 1rem;
    background-color: #eff9ff;
}

.maintenance i{
    font-size: 2rem;
    margin-right: 1rem;
}

textarea{
    resize: vertical;
    width: 100%;
    min-height: 10rem;
}

@media (min-width: 500px) {
    .conteneur{
        width: 50vw;
        min-width: 450px;
        margin-right: auto;
        margin-left: auto;
    }
	label, bouton{
	    margin-bottom: 1.5rem;
	}
}