#bg-form{
    background: linear-gradient(90deg,rgba(249, 245, 231, 1) 0%, rgba(249, 245, 231, 1) 40%, rgba(164, 144, 102, 1) 30%, rgba(164, 144, 102, 1) 100%);
    @media screen and (max-width: 992px) {
        background: none;
        
    }
}
.contact-section .row {
    display: flex;
    align-items: stretch;
    @media screen and (max-width: 992px) {
        flex-direction: column;
        
    }
}
.contact-form {
    width: 100%;
    gap: 20px;
    padding: 50px;
    background-color:  rgba(164, 144, 102, 1);
}
.contact-section{
    margin-top: 50px;
    margin-bottom: 50px;
}
.contact-info{
    background-color: rgba(249, 245, 231, 1);
    padding: 30px;
}

/* Style des champs de formulaire */
.contact-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}
/* .contact-form input{
} */
.contact-form input:focus,
.contact-form textarea:focus{
    outline: none;
}
.contact-form input,
.contact-form textarea {
    margin-bottom: 20px;
    border-top: none;
    border-left: none;
    border-right: none;
    font-size: 16px;
}
.contact-form textarea {
    height: 100px;
    resize: none;
    display: block;
}
.btn-black {
    background-color: #D7CBB3;
    color: black;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color ease 0.3s;
}
.btn-black:hover {
    background-color: #5B4D35;
    color: white;
}
.message-merci {
    background: #e6f9ec;
    color: #217a3b;
    border: 2px solid #b2e2c7;
    border-radius: 8px;
    padding: 18px 24px;
    font-size: 1.2em;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(33,122,59,0.08);
    margin-top: 20px;
    text-align: center;
}