body {
    background-image:url('/Images/Clock.jpg');
    background-size: cover;
    margin: 0;
    background-position-y: -20px;
    font-family: 'Raleway', sans-serif;
    color: #474b4f;
    box-sizing: border-box;
}

h1{
    text-transform: uppercase;
    font-weight: 300;
}

.BoiteForm{
    max-width: 600px;
    position: absolute;
    top: 50%;
    left: 70%;
    transform: translate(-30%, -60%);
    border-radius: 10px;
    padding: 20px 40px 20px 40px;
    box-sizing: border-box;
    box-shadow: 0 15px 25px rgba(0,0,0,.05);
}

.BoiteForm p{
    margin-bottom: 30px;
    font-weight: bold;
}

.BoiteForm a{
    color: #008F00;
    text-decoration: none;
}

.Champ{
    position: relative;
    margin-bottom: 5px;
   
}

.Champ input{
    padding: 10px 10px;
    width: 100%;
    font-size: 16px;
    background-color: rgba(71, 75, 79, 0.20);
    border: none;
    outline: none;
    margin-bottom: 20px; 
    color: #474b4f;
}

.Champ label{
    position: absolute;
    top: 0;
    left: 8px;
    padding: 10px 0;
    width: 100%;
    font-size: 16px;
    pointer-events: none;
    transition: .5s;
}


.Champ input:focus ~ label, .Champ input:valid ~ label{
    top: -27px;
    left: 0;
    font-size: 13px;
    color: #008F00;
    font-weight: bold;
}

input[type="submit"]{
    font-family: 'Roboto', sans-serif;
    background-color: #333333/*#86C232*/;
    border-radius: 25px;
    border:  1px solid #333333;
    padding: 10px;
    color: #fff;
    width: 150px;
    transition: border 0.3s linear;
}