.lead-magnet {
    margin: 30px auto;
    font-family: "Inter", "Helvetica Neue", sans-serif !important;
    width: 100%;
    max-width: 700px;
}

/* BOX */
.lead-magnet-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    background: #f5f5f5;
    gap: 24px;
}
.lead-magnet-box .lead-magnet-body {
    text-align: center;
}
.lead-magnet-box p.lead-magnet-title {
    font-size: 20px !important;
    font-weight: 700 !important;
    line-height: 1.2;
    margin: 0;
    padding: 0;
    padding-bottom: 12px;
    color: #19c37d;
}
.lead-magnet-box p.lead-magnet-subtitle {
    font-size: 16px;
    font-weight: 400 !important;
    line-height: 1.2;
    margin: 0;
    padding: 0;
}
.lead-magnet-box button.lead-magnet-button {
    font-size: 18px;
    font-weight: 400 !important;
    line-height: 1.2;
    margin: 0;
    padding: 12px 24px;
    background-color: #19c37d;
    color: #fff;
    border: none;
    border-radius: 40px;
    cursor: pointer;
}
@media (min-width: 767px) {
    .lead-magnet-box {
        display: flex;
        flex-direction: row;;
        justify-content: space-between;
        align-items: center;
    }
    .lead-magnet-box .lead-magnet-body {
        text-align: left;
        width: 70%;
    }
}

/* BUTTON */
.lead-magnet-btn .lead-magnet-button {
    font-size: 18px;
    font-weight: 400 !important;
    line-height: 1.2;
    margin: 0;
    padding: 12px 24px;
    background-color: #19c37d;
    color: #fff;
    border: none;
    border-radius: 40px;
    cursor: pointer;
}

/* POPUP */
.lead-magnet-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 16px;
}
.lead-magnet-popup-body {
    background: #fff;
    padding: 32px 24px;
    max-width: 500px;
    width: 100%;
    border-radius: 20px;
    position: relative;
}
.lead-magnet-popup-close {
    position: absolute;
    top: 4px;
    right: 12px;
    padding: 0;
    margin: 0;
    font-size: 32px;
    color: #7c7c7c;
    background: transparent;
    border: none;
    cursor: pointer;
}
.lead-magnet-popup p.lead-magnet-title {
    font-size: 24px !important;
    font-weight: 700 !important;
    line-height: 1.2;
    margin: 0;
    padding: 0;
    padding-bottom: 12px;
    color: #19c37d;
}
.lead-magnet-popup p.lead-magnet-subtitle {
    font-size: 16px;
    font-weight: 400 !important;
    line-height: 1.2;
    margin: 0;
    padding: 0;
    padding-bottom: 12px;
}
.lead-magnet-popup .lead-magnet-popup-form input {
    width: 100%;
    padding: 8px;
    margin-bottom: 12px;
    font-size: 16px;
}
.lead-magnet-popup button.lead-magnet-popup-button {
    font-size: 18px;
    font-weight: 400 !important;
    line-height: 1.2;
    width: 100%;
    margin: 0;
    padding: 12px 24px;
    background-color: #19c37d;
    color: #fff;
    border: none;
    border-radius: 40px;
    cursor: pointer;
}
@media (min-width: 767px) {
    .lead-magnet-popup-body {
        padding: 32px;
    }
    .lead-magnet-popup .lead-magnet-popup-form input {
        padding: 8px 16px;
    }
}