*, html, body {margin: 0; padding: 0; font-family: comic sans ms; font-size: 14px; box-sizing: border-box;}
html, body {width: 100%; height: 100%;}
a:link, a:visited, a:active, a:hover {text-decoration: none; color: #000;}
input, button {outline: none; border: none; width: 100%;}

/* ----------------------------------- Page d'accueil ----------------------------------- */

body
{
    display: flex;
    justify-content: center;
    align-items: center;
	background-image: url("../image/hexagonal.png");
	background-size: 100% 100%;
}

body article
{
    width: 1000px;
    height: 500px;
    display: grid;
    grid-template-columns: 650px 350px;
    border-radius: 20px;
}

body article colonne:nth-child(1) img
{
    width: 650px;
    height: 499px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

body article colonne:nth-child(2)
{
    background-color: lightgray;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    height: 499px;
    width: 348px;
}

body article colonne:nth-child(2) form
{
    color: #181c28;
}

body article colonne:nth-child(2) form div:nth-child(1)
{   
    font-weight: bold;
    font-size: 30px;
    height: 60px;
    line-height: 60px;
    text-align: center;
}

body article colonne:nth-child(2) form div:nth-child(2)
{
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 20px;
}

body article colonne:nth-child(2) form div:nth-child(3)
{
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: red;
}

body article colonne:nth-child(2) form div:nth-child(4)
{
    height: 30px;
    line-height: 30px;
    margin: 10px 20px 0px 20px;
    font-weight: bold;
}

body article colonne:nth-child(2) form div:nth-child(5)
{
    height: 30px;
    line-height: 30px;
    border-bottom: 1px solid #181c28;
    margin: 0px 20px 10px 20px;
}

body article colonne:nth-child(2) form div:nth-child(6)
{
    height: 30px;
    line-height: 30px;
    margin: 10px 20px 0px 20px;
    font-weight: bold;
}

body article colonne:nth-child(2) form div:nth-child(7)
{
    height: 30px;
    line-height: 30px;
    border-bottom: 1px solid #181c28;
    margin: 0px 20px 10px 20px;
}

body article colonne:nth-child(2) input
{
    background: lightgray;
}

body article colonne:nth-child(2) button
{
    margin: 20px;
    padding: 10px 0px;
    color: white;
    background-color: #181c28;
    border-radius: 20px;
    width: 300px;
    cursor: pointer;
}
