*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    color: rgb(132, 134, 132);
    font-family: sans-serif;
}

.container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container img{
    height: 200px;
    margin-bottom: 50px;
    pointer-events: none;
}

form input[type=text],input[type=password],button{
    width: 450px;
    padding: 10px;
    margin: 10px 0 30px;
    border: 1px solid rgb(206, 215, 222);
    border-radius: 4px;
    background: rgb(239, 243, 255);
    outline: none;
}

form label{
    margin-bottom: 45px;
}

.afficher{
    cursor: pointer;
}

form input[type=checkbox]{
    margin-right: 10px;
    cursor: pointer;
}

form .signin{
    border: none;
    background-color: #ffc107;
    cursor: pointer;
    padding: 20px 0;
    color: white;
    margin-top: 15px;
}

form .signin:hover{
    background-color: #ffcc34;
    transition: 0.8s;
}

@media (max-width:600px){
    .container img{
        height: 150px;
    }
    form input[type=text],input[type=password],.signin{
        width: 300px;
    }
}

@media (max-width:450px){
    .container img{
        height: 100px;
    }
    form input[type=text],input[type=password],.signin{
        width: 250px;
    }
}