div.contact {
    height: 100vh;
    background: #1e181a;
}
div.contact div.center {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
}
div.contact div.center div.form {
    width: calc(100% - 500px);
    height: 100%;
    padding: 50px 100px;
}
div.contact div.center div.form h1 {
    color: #fff;
    font-size: 30px;
}
div.contact div.center div.form form {
    margin: 20px 0;
}
div.contact div.center div.form form div.field {
    margin: 15px 0;
}
div.contact div.center div.form form div.field label {
    color: #fff;
    display: block;
}
div.contact div.center div.form form div.field input[type=text] {
    color: #fff;
    display: block;
    background: rgba(255, 255, 255, 0.1);
    width: 100%;
    height: 50px;
    border: none;
    outline: none;
    border-radius: 4px;
    padding: 0 10px;
}
div.contact div.center div.form form textarea {
    color: #fff;
    display: block;
    background: rgba(255, 255, 255, 0.1);
    width: 100%;
    height: 100px;
    font-size: 1em;
    border: none;
    outline: none;
    border-radius: 4px;
    padding: 10px;
}
div.contact div.center div.form form button {
    background: #dd3333;
    display: inline-block;
    width: auto;
    margin: 0 auto;
    padding: 0 24px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    border: 0;
    border-radius: 7px;
    text-align: center;
    position: relative;
    bottom: 0;
    transition: all 0.5s ease;
}
div.contact div.center div.form form button:hover {
    background: #a92424;
    transition: all 0.5s ease;
    bottom: 5px;
    box-shadow: 0 15px 10px 1px rgba(0, 0, 0, 0.05);
}

p.message {
    color: #fff;
}

div.contact div.center div.coordonnees {
    width: 500px;
    height: 100%;
    background: #A0A0A0;
    background: rgba(255, 255, 255, 0.05);
    padding: 50px;
}
div.contact div.center div.coordonnees h3 {
    color: #fff;
    font-size: 30px;
}
div.contact div.center div.coordonnees p {
    font-size: 16px;
    color: #A0A0A0;
}
div.contact div.center div.coordonnees ul {
    margin: 10px 0;
    color: #A0A0A0;
}
div.contact div.center div.coordonnees ul li span {
    display: inline-block;
    width: 30%;
}
div.contact div.center div.coordonnees ul li a {
    color: #fff;
    text-decoration: none;
}
div.contact div.center div.coordonnees a.email {
    color: #a92424;
    text-decoration: none;
    font-size: 20px;
}

iframe {
    width: 100%;
    height: 50vh;
    border: 0;
    color: #333;
    font-size: 30px;
    margin: 0;
    padding: 0;
}

.grecaptcha-badge { 
    visibility: hidden;
    visibility: visible;
}

@media screen and (max-width: 1200px) {
    div.contact div.center div.form {
        width: 60%;
    }
    div.contact div.center div.coordonnees {
        width: 40%;
    }
}
@media screen and (max-width: 800px) {
    div.contact {
        height: auto;
    }
    div.contact div.center {
        display: block;
        height: auto;
    }
    div.contact div.center div.form {
        width: 100%;
    }
    div.contact div.center div.form {
        padding: 50px;
    }
    div.contact div.center div.coordonnees {
        width: 100%;
        padding: 30px 200px;
    }
}
@media screen and (max-width: 700px) {
    div.contact div.center div.coordonnees {
        padding: 30px 100px;
    }
}
@media screen and (max-width: 500px) {
    div.contact div.center div.form {
        padding: 30px;
    }
    div.contact div.center div.coordonnees {
        padding: 30px;
    }
}
