.bookfeature {
    display: inline-block;
    line-height: 110px;
    z-index: 2;
    font-size: 40px;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    letter-spacing: -1px;
    margin: 21px 0 0 0;
    color: #7dba5c;
}
.bookfeature:after {
    content: '';
    margin-left: 0.1em;
    font-family: 'Oswald', sans-serif;
    font-weight: 100;
}


#refreshCaptcha {
    cursor: pointer;
}

/* Style the button */
.captcha-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.captcha-refresh{
    --size: 44px;
    --bg: #97301a;
    --bg-hover: #7f2614;
    --icon: #ffffff;

    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    border: none;
    background: var(--bg);
    color: var(--icon);

    display: inline-flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.captcha-refresh:hover {
    background: var(--bg-hover);
    transform: rotate(20deg);
}

.captcha-refresh:active {
    transform: rotate(180deg);
}

.captcha-refresh svg {
    pointer-events: none;
}

.subscribe-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
}

.subscribe-label input {
    accent-color: #97301a; /* matches your brand */
}

