/**
 * Diesel Help Bulletin Lead Gen — Gate Styles
 *
 * Scoped to .dhbg-gate-wrapper. Uses the same CSS custom property tokens
 * as the DH brand for consistency.
 */
.dhbg-gate-wrapper {
    --dhbg-primary: #28B34B;
    --dhbg-primary-hover: #22A043;
    --dhbg-dark: #15141C;
    --dhbg-teal: #003D3A;
    --dhbg-body: #7A7A7A;
    --dhbg-bg: #F0F4F4;
    --dhbg-radius: 6px;
    --dhbg-heading-font: 'Oswald', sans-serif;
    --dhbg-body-font: 'Roboto', sans-serif;

    font-family: var(--dhbg-body-font);
    background: #fff;
    border: 1px solid #E0E5E5;
    border-radius: var(--dhbg-radius);
    padding: 40px;
    max-width: 600px;
    margin: 30px auto;
    text-align: center;
}

.dhbg-gate-icon {
    font-size: 48px;
    margin-bottom: 16px;
    line-height: 1;
}

.dhbg-gate-heading {
    font-family: var(--dhbg-heading-font);
    font-weight: 700;
    font-size: 28px;
    color: var(--dhbg-dark);
    margin: 0 0 12px;
}

.dhbg-gate-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--dhbg-body);
    margin: 0 0 24px;
}

.dhbg-gate-form-container {
    margin: 0 0 24px;
}

/* Style Elementor form within the gate to match brand */
.dhbg-gate-form-container .elementor-form {
    text-align: left;
}

.dhbg-gate-form-container .elementor-field-group input[type="email"],
.dhbg-gate-form-container .elementor-field-group input[type="text"] {
    border: 2px solid #E0E5E5;
    border-radius: var(--dhbg-radius);
    padding: 12px 16px;
    font-size: 16px;
    font-family: var(--dhbg-body-font);
    width: 100%;
}

.dhbg-gate-form-container .elementor-field-group input:focus {
    border-color: var(--dhbg-primary);
    outline: none;
}

.dhbg-gate-form-container .elementor-button {
    background: var(--dhbg-primary);
    color: #fff;
    border: none;
    border-radius: var(--dhbg-radius);
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--dhbg-body-font);
    cursor: pointer;
    transition: background 0.2s;
    letter-spacing: -0.4px;
}

.dhbg-gate-form-container .elementor-button:hover {
    background: var(--dhbg-primary-hover);
}

.dhbg-gate-member-link {
    font-size: 15px;
    color: var(--dhbg-body);
}

.dhbg-gate-member-link a {
    color: var(--dhbg-teal);
    font-weight: 600;
    text-decoration: none;
}

.dhbg-gate-member-link a:hover {
    text-decoration: underline;
}
