/* ActiveCampaign formulier in footer */

._form {
    background: #ffffff;
    border: 1px solid #DCD2C1;
    border-radius: 8px;
    padding: 32px 36px;
    max-width: 520px;
    box-shadow: 0 12px 32px rgba(70, 51, 37, 0.10);
}

/* Titel */
._x04866848 ._form-title {
    text-align: center;
    color: #463325 !important;
    font-size: 24px !important;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 24px;
}

/* Labels verbergen */
._x05174394 label,
._field_email label {
    display: none !important;
}

/* Formulier inhoud */
._form-content {
    text-align: center;
}

/* Velden */
._form-content input[type="text"],
._form-content input[type="email"] {
    width: 100% !important;
    height: 50px;
    border: 1px solid #DCD2C1 !important;
    border-radius: 6px;
    padding: 0 16px;
    font-size: 16px;
    color: #463325;
    background: #ffffff;
    margin-bottom: 16px;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Focus op invoervelden */
._form-content input[type="text"]:focus,
._form-content input[type="email"]:focus {
    border-color: #57211A !important;
    box-shadow: 0 0 0 3px rgba(87, 33, 26, 0.08);
    outline: none;
}

/* Placeholder */
._form-content input::placeholder {
    color: #AE9A80;
}

/* Verzendknop */
._submit {
    background: #57211A !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 4px !important;
    padding: 14px 40px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    margin-top: 12px;
    cursor: pointer;
    letter-spacing: 0.02em;

    box-shadow: 0 3px 10px rgba(87, 33, 26, 0.18);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

/* Hover */
._submit:hover {
    background: #57211A !important;
    color: #ffffff !important;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(87, 33, 26, 0.25);
}

/* Klik-effect */
._submit:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(87, 33, 26, 0.15);
}

/* Mobiel */
@media (max-width: 767px) {
    ._form {
        padding: 24px 20px;
    }

    ._x04866848 ._form-title {
        font-size: 20px !important;
    }

    ._submit {
        width: 100% !important;
    }
}