article {
    width: 100%;
    height: auto;
    min-height: calc(100vh - 50px);
    display: flex;
    margin: 50px 0 0 0;  
}

form {
    width: calc(100% - 350px);
    padding: 20px;
    background-image: url('../images/contact2.jpg');
    background-size: cover;
    background-position: center center;
}
form input[type="text"] {
	width: 80%;
	height: auto;
    display: block;
	padding: 15px;
    border-radius: 15px;
    border: solid 1px rgba(0,0,0,0.4);
    background: rgba(255,255,255,0.4);
}
form textarea {
	width: 80%;
	height: 200px;
    display: block;
	font-size: 1em;
	padding: 10px;
    border-radius: 15px;
    border: solid 1px rgba(0,0,0,0.4);
    background: rgba(255,255,255,0.4);
}
form button {
	width: auto;
	height: auto;
	padding: 15px 30px;
	border-radius: 15px;
	color: #f2eaf8;
	font-weight: bold;
    border: solid 1px #6B5896;
	background: #6B5896;
    transition: 0.5s;
}
form button:hover {
	color: #6B5896;
	background: #f2eaf8;
    transition: 0.5s;
}

main svg { fill: #fff; }
div.coordonnees {
    width: 350px;
    background-image: url('../images/contact.jpg');
	padding: 20px;
	color: #fff;
    position: relative;
}
div.coordonnees ul.coordonnees {
    margin: 0;
    padding: 0;
    list-style: none;
    position: absolute;
    top: 40%;
    left: -50px;
    transform: translateY(-50%);
}
div.coordonnees ul.coordonnees li {
    margin: 20px 0;
    padding: 0 20px;
    height: 40px;
    line-height: 40px;
    background: #6B5896;
    background: #222;
    font-size: 1.2em;

}
div.coordonnees ul.coordonnees li a {
    color:#f2eaf8;
    text-decoration: none;
    padding: 0;
    height: 40px;
    line-height: 40px;
    display: block;
    width: 100%;
}
div.coordonnees ul.coordonnees li a span {
    display: inline-block;
    width: 30px;
}
div.coordonnees ul.coordonnees li.socials a {
    display: inline-block;
    width: 30px;
}

@media screen and (max-width: 1200px) {
    form input[type="text"],
    form textarea {
        width: calc(100% - 50px);
    }
}
@media screen and (max-width: 920px) {
    article {
        display: block;
    }
    form {
        width: 100%;
    }
    form input[type="text"],
    form textarea {
        width: 100%;
    }
    div.coordonnees {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    div.coordonnees ul.coordonnees {
        position: relative;
        top: 0;
        left: 0;
        transform: translateY(0);
    }
}