.elementor-874 .elementor-element.elementor-element-56a7d77{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-874 .elementor-element.elementor-element-3f517cc{--display:flex;}.elementor-874 .elementor-element.elementor-element-917828c.elementor-element{--align-self:center;}.elementor-874 .elementor-element.elementor-element-49602a6.elementor-element{--align-self:center;}/* Start custom CSS for shortcode, class: .elementor-element-49602a6 *//* 🌟 FORMULAIRE GLOBAL */
.custom-form {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* 🌟 CHAMPS DU FORMULAIRE */
.custom-form input[type="text"],
.custom-form input[type="email"],
.custom-form input[type="tel"],
.custom-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    background-color: #f9f9f9;
    transition: border 0.3s ease-in-out, background 0.3s ease-in-out;
}

/* 🌟 EFFET AU FOCUS */
.custom-form input:focus,
.custom-form textarea:focus {
    border-color: #2C3539;
    background-color: #fff;
    outline: none;
    box-shadow: 0 0 5px rgba(44, 53, 57, 0.2);
}

/* 🌟 TEXTAREA */
.custom-form textarea {
    min-height: 150px;
    resize: vertical;
}

/* 🌟 LABELS */
.custom-form label {
    font-size: 16px;
    font-weight: 500;
    display: block;
    margin-bottom: 6px;
    color: #333;
}

/* 🌟 BOUTON D'ENVOI */
.custom-form input[type="submit"] {
    width: 100%;
    background: #2C3539;
    color: #fff;
    padding: 14px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.custom-form input[type="submit"]:hover {
    background: #3f4c52;
}

/* 🌟 PLACEHOLDER STYLE */
.custom-form ::placeholder {
    color: #aaa;
    font-style: italic;
}

/* 🌟 MESSAGES DE VALIDATION & ERREUR */
.wpcf7-response-output {
    margin-top: 15px;
    padding: 12px;
    font-size: 14px;
    text-align: center;
    border-radius: 5px;
}

.wpcf7-validation-errors {
    background: #ffdddd;
    border: 1px solid #ff4c4c;
    color: #ff0000;
}

.wpcf7-mail-sent-ok {
    background: #ddffdd;
    border: 1px solid #4caf50;
    color: #2d862d;
}

/* 🌟 RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .custom-form {
        padding: 15px;
    }

    .custom-form input[type="submit"] {
        font-size: 16px;
        padding: 12px;
    }
}/* End custom CSS */