@font-face {
  font-family: 'Louis George Cafe';
  src: url('fonts/Louis George Cafe.ttf') format('truetype')
}

@font-face {
  font-family: 'Louis George Cafe Bold';
  src: url('fonts/Louis George Cafe Bold.ttf') format('truetype')
}

@font-face {
  font-family: 'Louis George Cafe Light';
  src: url('fonts/Louis George Cafe Light.ttf') format('truetype')
}

h1, h2, h3, h4, h5
{
    font-family: 'Louis George Cafe Bold';
}


*
{
    box-sizing: border-box
}

body, header, div, nav, section, ul, li, h1, h2, h3, h4, h5, h6, button, p, input
{
    margin: 0;
    padding: 0
}

ul
{
    list-style-type: none
}

a
{
    text-decoration: none
}

body
{
   font-family: 'Louis George Cafe';
}

input[type=radio]
{
    display: none
}

input[type=radio] + label:before
{
    content: '';
    float: left;
    margin-right: 8px;
    width: 20px;
    height: 20px;
    border: 1px solid grey;
    border-radius: 50%;
    background: white
}

input[type=radio]:checked + label:before
{
    box-shadow:inset 2px 2px 2px 2px #c2000c;
}


.lien
{
    display: block;
    width: 100%;
    color: #c2000c
}

.lien:hover
{
    color: black;
    text-decoration: underline
}

.erreurs
{
    color: red;
    font-weight: bolder;
    margin-bottom: 30px
}

.logo
{
    height: 100px;
    width: 100px;
    text-align: center;
    margin: 0 auto;
    margin-top: 40px;
    margin-bottom: 30px
}

.logo img
{
    height: 100%
}

main
{
    width: 70%;
    margin: 0 auto
}

.formulaire ul
{
    float: left;
    width: calc(100% - 150px)
}

.formulaire input
{
    width: 50%;
    float: left;
    border: none;
    outline: none;
    height: 40px;
    background: #fbf5dc;
    padding-left: 10px
}

.formulaire button
{
    float: right;
    width: 150px;
    line-height: 40px;
    border: none;
    background: #f0bb45
}

.formulaire button:hover
{
    background: black;
    color: #f0bb45
}

@media screen and (max-width: 700px)
{
    .formulaire ul
    {
        width: 100%
    }
    
    .formulaire li
    {
        width: 100%;
        margin-bottom: 5px;
        overflow: hidden
    }
    
    .formulaire input
    {
        width: 100%;
        text-align: center
    }
    
    .formulaire button
    {
        width: 100%
    }
    
    .option_bar h5, #setings
    {
        display: none
    }
    
    .option_bar > ul
    {
        margin-right: 0
    }
    
    .compta-recap
    {
        flex-direction: column
    }
    
    .compta-recap div
    {
        width: 100%
    }
    
}