@font-face {
	font-family: "caviar";
	src: url("caviar.ttf");
}

@font-face {
	font-family: "bills";
	src: url("bills.ttf");
}

body {
    background-color: #a6b1c1;
}

#contenu {
    width: 40%;
    height: 400px;
    margin: auto;
    margin-top: 100px;
    background-color: #4c86db;
    border-radius: 30px;
    box-shadow: 2px 2px 2px;
}

#titre {
    font-family: "caviar";
    font-size: 0.6em;
    width: 80%;
    margin: auto;
    padding-top: 15px;
}

#logo {
    width: 30%;
    height: 320px;
    display: inline-block;
    border-right: 5px solid #a6b1c1;
}

#logo img {
    width: 100px;
    padding-top: 50px;
    padding-left: 20px;
}

#login {
    display: inline-block;
    vertical-align: top;
}

#top {
    width: 250px;
    margin-left: 20px;
    margin-top: 10px;
    text-align: center;
    font-family: "bills";
}

span {
    cursor: pointer;
}

span:hover {
    color: #a6b1c1;
}

span + span {
    margin-left: 20px;
}

#loginForm {
    margin-top: 60px;
}

li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

label {
    flex: 1 0 80px;
    max-width: 120px;
    font-family: "bills";
}

label + input {
    flex: 1 0 100px;
}

input[type="submit"]:hover {
    cursor: pointer;
}

input[type="submit"] {
    margin-left: auto;
    padding: 8px 16px;
    border: none;
    text-transform: uppercase;
    letter-spacing: .09em;
    border-radius: 2px;
}

@media screen and (max-width: 1024px) {
    #contenu {
        display: flex;
        flex-direction: column;
        width: 60%;
        height: auto;
        align-items: center;
    }
    
    #titre {
        text-align: center;
    }
    
    #logo {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        border-bottom: 10px solid #a6b1c1;
        border-right: 0px;
    }

    #logo img {
        width: 100px;
        height: 100px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    #top {
        display: flex;
        justify-content: center;
        margin: auto;
        margin-top: 10px;
    }
    
    #login {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    #loginForm {
        margin: auto;
        margin-top: 20px;
    }
    
    #loginForm ul {
        padding-left: 0px;
    }
    
    input[type="submit"] {
        padding: 8px 16px;
        border: none;
        text-transform: uppercase;
        letter-spacing: .09em;
        border-radius: 2px;
        margin-left: 220px;
    }
}