/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */
/* Wrapper */
.cf7-wrap {
    max-width: 520px;
}

/* Spacing champs */
.cf7-field {
    margin: 0 0 18px;
}

/* Labels (ton style) */
.cf7-field label {
    display: block;
    font-family: "Roboto", Sans-serif;
    font-size: 18px !important;
    margin: 0 0 8px;
    color: #0D382B;
}

/* Astérisque requis */
.cf7-required {
    color: #d11;
}

/* Inputs + textarea */
.cf7-wrap input[type="text"],
.cf7-wrap input[type="tel"],
.cf7-wrap textarea {
    width: 100%;
    border: 2px solid #f08a2a;
    border-radius: 4px;
    padding: 12px 12px;
    outline: none;
    box-shadow: none;

    background-color: #ffffff !important;
    color: #0D382B;
    /* optionnel: couleur du texte */
}


/* Textarea */
.cf7-wrap textarea {
    min-height: 140px;
    resize: vertical;
}

/* Conteneur bouton centré */
.cf7-submit {
    text-align: center !important;
    margin-top: 10px;
}

/* Bouton (ton style) */
.cf7-wrap input[type="submit"] {
    font-family: "Bree Serif", Sans-serif;
    font-size: 28px;
    font-weight: 300;

    background: #f47c12;
    color: #fff;

    border-style: solid;
    border-width: 2px;
    border-color: #f47c12;

    border-radius: 62px;
    padding: 1px 18px;

    display: inline-block;
    cursor: pointer;
}

/* Hover */
.cf7-wrap input[type="submit"]:hover {
    filter: brightness(0.95);
}