.title {
    text-align: center;
    font-size: 40px;
    font-weight: 200;
}

.contact-container {
    display: flex;
    padding: 0 160px;
    gap: 50px;

    margin: 50px 0;

    justify-content: space-evenly;

    flex-wrap: wrap;
}

@media screen and (max-width: 900px) {
    .contact-container {
        padding: 0 50px;
    }
}

@media screen and (max-width: 450px) {
    .contact-container {
        padding: 0 20px;
    }
}

/* FORM */

.form-container {
    max-width: 600px;
}

.form-container h1 {
    font-size: 32px;
    font-weight: 200;
}

.form-container p {
    font-size: 16px;
    color: #747474;
}

.form-container form {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.form-container form label {
    font-size: 24px;
    margin-top: 30px;
}

.form-container form input {
    border: none;
    border-bottom: 2px black solid;
    height: 40px;
    margin-bottom: 20px;
    outline: none;
}

.form-container form textarea {
    resize: none;
    border: none;
    border-bottom: 2px black solid;
    height: 100px;
    margin-bottom: 20px;
    outline: none;

    padding: 20px 0;
}

.form-container form button {
    padding: 10px;
    background-color: black;
    color: white;
    border: none;
    font-size: 20px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 20px;
}

/* DROITE */

.droite {
    max-width:600px;
}

.droite .action h1 {
    font-size: 32px;
    font-weight: 200;
}

.droite p {
    font-size: 16px;
    color: #747474;
}

.droite .action .logo-txt {
    display: flex;
    align-items: center;
    gap: 15px;
}

.droite .action .logo-txt p {
    color: black;
    font-weight: bold;
}