
#contact {
    background: url(/images/vide-maison35.jpg);
    background-size: cover;
    background-position: center;
}

#contact .text {
    height: auto;
}

#contact p, #contact a {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.2em;
}

#contact h1 {
    width: 100%;
    font-size: 2.5em;
    padding: 20px 0;
    color: #fff;
}

form {
    display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 50%;
    height: auto;
    background: #f9b707;
    overflow-x: hidden;
}

form h1 {
    padding: 10px;
    text-align: center;
}

.form-left, .form-right {
    display: flex;
    flex-direction: column;
    padding: 10px;
} 

#contact label {
	width: 100%;
	font-size: 1.2em;
    margin: 10px 0;
    color: #fff;
}

#contact input {
	width: 300px;
	padding: 10px;
    border: transparent;
}

input:focus {
    border: 3px solid #d40c0c;
}

#contact textarea {
	width: 300px;
    height: 194px;
	padding: 5px;
    font-size: 1.2em;
    border: transparent;
}

.button-div {
    width: 68%;
}

#contact button {
    height: 50px;
    width: 100%;
	font-size: 1em;
	font-weight: bold;
    color: #fff;
    background: transparent;
    margin: 10px 0;
    padding: 5px 10px;
    border: 2px solid #fff;
}

#contact button:hover {
    /* background: #d40c0c; */
    background: #cf9a06;
	transition: 0.3s;
}

/* media queries */
@media screen and (max-width: 640px) {
    #contact .text {
        height: auto;
    }
    #contact form {
        width: 100%;
        height: auto;
    }
    #contact h1 {
        font-size: 1.7em;
        text-align: center;
    }
    form p {
        font-size: 1em;
    }
    #contact label {
        font-size: 1em;
    }

}

@media screen and (max-height: 500px) {
    #contact .text {
        height: auto;
    }
    #contact form {
        width: 100%;
        height: auto;
    }
    #contact h1 {
        font-size: 1.7em;
        text-align: center;
    }
    form p {
        font-size: 1em;
    }
    #contact label {
        font-size: 1em;
    }
}