@import url('https://fonts.googleapis.com/css2?family=Quicksand&display=swap');

body {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: 'Quicksand', sans-serif;
}

.titre {
    display: block;
}

.titre h2 {
    display: block;
    text-align: center;
}

.titre .trait {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5%;
    width: 150px;
    height: 1px;
    background-color: rgb(0, 181, 0);
}

.input {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.input .societe input {
    width: 1000px;
    height: 20px;
}

.input .section2 input {
    width: 500px;
    height: 20px;
}

.input .section3 input {
    width: 500px;
    height: 20px;
}

.input .section2 {
    display: flex;
}

.input .section3 {
    display: flex;
}

/*contact*/

#contact {
    background-color: #f8f8f8;
    padding: 50px 0;
    
}

#contact .container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    background-color: white;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0px 10px -50px -10px #d6d6d6;
}

#contact .container .title {
    text-align: center;
    color: #2a2a2a;
    margin-bottom: 50px;
}

#contact .container .title h3 {
    font-size: 2.2em;
}

#contact .container .title .trait{
    width: 250px;
    height: 1px;
    margin-left: auto;
    margin-right: auto;
    background-color: #0acc00;
}

#contact .container form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 600px;
}

#contact .container form input {
    width: 47%;
    
}

#contact .container form input, #contact .container form textarea {
    margin: 10px 0;
    padding: 10px;
    box-sizing: border-box;
    border: none;
    outline: none;
    border-bottom: 2px solid #0acc00;
    transition: 0.2s ;
    font-size: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
} 

#contact .container form textarea {
    width: 100%;
    resize: none;
    height: 100px;
    font-size: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#contact .container form button {
    width: 192px;
    height: 30px;
    border-radius: 8px;
    border: none;
    background-color: #0acc00;
    color: white;
    font-weight: bold;
    font-size: 1.0em;
    cursor: pointer;
    margin-top: 30px;
    outline: none;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}