/* Brevo subscribe form */

/* Heading */
.wriwoods-brevo-form h1 {
    margin: 5px 0;
    padding-bottom: 15px;
}

/* Description */
.wriwoods-brevo-form .description p {
    padding-bottom: 15px;
}

/* Button */
.wriwoods-brevo-form button {
    font-weight: 700;
    color: #FFFFFF;
    background-color: #4a644c;
    border-radius: 5px;
    border: none;
    transition: transform 0.25s ease, background-color 0.25s ease; /* Smooth transform & color change */
}

.wriwoods-brevo-form button:hover {
    transform: scale(1.05); /* Slightly bigger */
    background-color: #5b7558; /* Slightly brighter color */
}

/* Subscribed notice above form */
.wriwoods-subscribed-notice {
    background-color: #e6f1e6;   /* soft green to signal success */
    color: #2f4d2f;              /* darker green for text */
    border: 1px solid #4a644c;   /* matches your button color */
    border-radius: 5px;
    padding: 12px 16px;
    font-size: 16px;
    font-family: Helvetica, sans-serif;
    text-align: center;
    margin-bottom: 16px;          /* space above the form */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* subtle lift */
    max-width: 540px;
    margin: auto;
}
