.__container_lead_overlay_customer {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
    width: 390px;
    height: 400px;
    z-index: 99;
}

.__contact_lead_container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    background-color: white;
    animation: __animation_lead_show 1s ease-in-out;
    border-radius: 6px;
}


@keyframes __animation_lead_show {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        transform: translate(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}


.__text_lead_user {

    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.__text_lead_user div {
    font-family: "LINE Seed JP", sans-serif;
    font-size: 19px;
    text-align: justify;
    font-weight: 700;
    line-height: 33px;
    width: 80%;
}


.__input_container_email {

    width: 100%;
    height: 100px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

input {
    width: 86%;
    height: 54px;
    background: #ececec;
    border: 1px solid #ffffff;
    border-radius: 16px;
    padding: 0 18px;
    color: rgb(2, 1, 1);
    font-size: 15px;
    outline: none;
    margin-bottom: 10px;
    transition: 0.25s;

}


.__container_button_env_lead {

    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}



.__button_env_lead {
    width: 220px;
    height: 55px;
    border: none;
    border-radius: 12px;

    background: linear-gradient(135deg, #1d6e16, #05d832);
    color: #fff;

    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;

    display: flex;
    align-items: center;
    justify-content: center;


    font-family: sans-serif;

    cursor: pointer;

    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);

    transition: all 0.3s ease;
}

.__button_env_lead:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.45);

    background: linear-gradient(135deg, #1d4ed8, #2563eb);
}

.__button_env_lead:active {
    transform: translateY(1px);
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}












.popup-loader {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.popup-content {
    width: 220px;
    padding: 28px;
    border-radius: 24px;
    background: #fff;

    display: none;
    flex-direction: column;
    align-items: center;
    gap: 18px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);

    animation: popup .25s ease;
}

.loader {
    width: 48px;
    height: 48px;
    border: 4px solid #d7ebe3;
    border-top: 4px solid #1f7a5c;
    border-radius: 50%;

    animation: spin .8s linear infinite;
}

.popup-content span {
    font-size: 17px;
    color: #1e293b;
    font-weight: 600;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes popup {
    from {
        opacity: 0;
        transform: scale(.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}



.__lead_box_overlay {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 380px;
    height: 450px;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
}

.lead-box {
    display: block;
    margin-top: 38px;
    background: #fff;
    border: 1px solid var(--border);
    padding: 28px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .04);
}

.lead-box h3 {
    font-size: 1.35rem;

    color: var(--dark);

}

.lead-box p {
    color: var(--text-light);
    margin-bottom: 22px;
    line-height: 1.6;
}


.__span_err_container {
    position: absolute;

    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    bottom: -20px;
}


#__text_err_current {
    color: red;
    text-align: center;
    font-size: 14px;
    font-family: sans-serif;
}





.__env_status_ok {
    position: relative;
    width: 90%;
    max-width: 420px;
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
    z-index: 9999;
    display: block;
    animation: __init_animation_env_status 1s ease-in-out;

}




@keyframes __init_animation_env_status {
    0% {
        transform: scale(0.5);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.__env_status_ok_icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #e8fff0;
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: bold;
}

.__env_status_ok h2 {
    color: #111;
    font-size: 24px;
    margin-bottom: 14px;
}

.__env_status_ok p {
    color: #555;
    line-height: 1.6;
    font-size: 16px;
}

.__env_status_ok_overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 9998;
    backdrop-filter: blur(4px);
}

@keyframes popupShow {
    from {
        opacity: 0;
        transform: translate(-50%, -45%) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.__con_span {

    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.__close_container_lead {
    border: 1px solid red;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background-color: red;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 10px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: sans-serif;
    color: rgb(255, 255, 255);
}