body {
	background-color: #fff;
	font-family: 'Arial';
}

.container {
    display: flex;
    flex-direction: column;
    width: 860px;
    background-color: #eee;
    box-shadow: 3px -3px 10px gray;
    margin: 20px auto;
}

.onglets {
    display: flex;
    flex-direction: row;
    width: 860px;
}

.onglet {
    color: #b2b2b2;
    width: 430px;
    height: 78px;
    text-align: center;
    border: 1px dotted #000;
    box-sizing: border-box;
    font-size: 1.3em;
    font-weight: bold;
    line-height: 70px;
    cursor: pointer;
    box-sizing: border-box;
}

.onglet1 { left: 0px; }
.onglet2 { left: 430px; }

.actif {
    color: #000;
    border: 2px solid red;
    box-shadow:3px -3px 15px gray inset;
}

.formulaire {
    display: flex;
    flex-direction: column;
}

.block {
    padding: 15px 20px;
}

.readOnly {
    background-color: #e0e0e0;
    border-color: #e0e0e0;
}

.error {
    height:  50px;
    padding: 5px 20px;
	color: red;
	font-weight: bold;
	text-align: center;
    box-sizing: border-box;
}

.mandatory {
	color: red;
	font-weight: bold;
}


.sousTitre {
    font-weight: bold;
    margin: 5px 0;
    font-family: 'Arial';
    font-size: 16px;
}

input[type='text'] {
    border-radius: 5px;
    border-width: 1px;
    padding: 2px 5px;
}

.validate {
    padding: 5px 20px;
    text-align: right;
}

.myButton {
    box-shadow: 3px 4px 0px 0px #1564ad;
    background:linear-gradient(to bottom, #79bbff 5%, #378de5 100%);
    background-color:#79bbff;
    border-radius:5px;
    border:1px solid #337bc4;
    display:inline-block;
    cursor:pointer;
    color:#ffffff;
    font-family:Arial;
    font-size:17px;
    font-weight:bold;
    padding:10px 40px;
    text-decoration:none;
    text-shadow:0px 1px 0px #528ecc;
}
.myButton:hover {
    background:linear-gradient(to bottom, #378de5 5%, #79bbff 100%);
    background-color:#378de5;
}
.myButton:active {
    position:relative;
    top:1px;
}


main {
    overflow: auto;
    min-height: 100vh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Page {
    font-size: larger;
    padding: 10px 0 15px 0;
    text-align: center;
    box-sizing: border-box;
    min-width: 200px;
    width: 90%;
}

.Smiley {
    max-width: 175px;
    display: block;
    margin: auto;
}

body {
    margin: 0!important;
    padding: 0!important;
    position: relative;
    top: 0;
    left: 0;
}