*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    background: rgb(83, 15, 148);
}
.form{
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%,-50%);
    background: rgb(250, 250, 250);
    width: 300px;
    height: 400px;
    border-radius: 3px;
}
.form input{
    border: 1px solid rgba(80, 80, 80,0.4);
    display: block;
    transform: translateY(50px);
    margin: 15px auto 0 auto;
    width: 80%;
    height: 35px;
    border-radius: 2px;
    text-align: center;
    box-shadow: 1px 1px 2px rgba(100, 100, 100,0.3);
}
#entete{
    width: 130px;
    color: aliceblue;
    font-size: 17px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 600;
    background: #fff;
    padding: 40px auto 0 25px;
}
a{ text-decoration: none;}
input:focus{
outline: none;
}
.form input[type="submit"]{
background: rgb(83, 15, 148);
width: 77%;
color: rgb(255, 255, 255);
border-radius: 2px;
border: none;
font-size: 17px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
::placeholder{
    text-align: justify;
    left: 20px;
    position: relative;
}
.title{
    transform: translate(30px,40px);
}
.title p{
    color: rgb(83, 15, 148);
    font-weight: 500;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 1.2em;
}