﻿/* POLICE */
@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* GLOBAL */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Mulish', sans-serif;
}

body {
    background-color:#f3f3f3;
    background-repeat:no-repeat;
    background-size:cover;

}

.login{
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 8rem;
}

img {
    width: 250px;
    display:block;
    margin: 4rem auto;
}

p {
    font-size: 16px;
    color: #000;
    text-align: left;
    max-width: 50%;
    margin: 0 auto;
    padding-bottom: 1rem;
}

input {
    width:50%;
    display: block;
    margin: 0 auto;
    padding: 15px 20px;
    font-size: 16px;
    margin-bottom: 3rem;
}

input:focus {
    outline: none;
}



a {
    color: #000;
    display: block;
    text-align:center;
    margin: 0 auto;
}

.mdp {
    letter-spacing:10px;
}


button {
    display: block;
    margin: 0 auto;
    cursor: pointer;
    color: #000;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 900;
    background-color: transparent;
    border: solid 3px #222;
    padding:20px 60px;
}

.MessageErreur{
    margin : 2rem auto;
    color: red;
    text-align: center;
}