.modal-lead__content {
    background: linear-gradient(135deg, #0f0f1a, #0a80c0, #0f0f1a);

    border-radius: 20px;
    padding: 30px 20px;
    width: 100%;
    max-width: 600px;
    position: relative;
    z-index: 6;
    animation: scale 0.7s ease-in-out;
}

.modal-lead__content::after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.modal-lead__content-subtitle,
.modal-lead__content-title {
    color: #fff;
}

.modal-lead__content-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: normal;
}

.modal-lead__content-subtitle {
    margin-top: 10px;
    font-size: 16px;
    line-height: 22px;
}

.modal-lead__content-banner {
    margin-top: 25px;
    padding: 25px 20px;
    background: #fff;
    border-radius: 12px;
}

.banner__top-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
    column-gap: 8px;
}

.banner__top-id,
.banner__top-subtitle {
    font-size: 16px;
    line-height: 22px;
}

.modal-lead__content-subtitle,
.modal-lead__content-title,
.banner__top-title,
.banner__top-subtitle,
.banner__top-id,
.banner__description-title,
.modal-lead__content-note,
.banner__description-subtitle {
    text-align: center;
}

.banner__top-title,
.banner__top-subtitle {
    color: #000;
}

.banner__top-subtitle {
    margin-top: 15px;
}

.banner__top-id {
    margin-top: 10px;
    color: #399c44;
}

.modal-lead__content-banner__description {
    margin-top: 40px;
}

.banner__description-title {
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    color: #000;
}

.banner__description-subtitle {
    margin-top: 10px;
    color: gray;
    font-size: 14px;
    line-height: 20px;
}

.modal-lead__content-banner__note {
    margin-top: 25px;
    color: #399c44;
    font-size: 10px;
    line-height: normal;
    background: #6df87d;
    border-radius: 120px;
    width: fit-content;
    margin-left: auto;
    padding: 6px 10px;
}

.modal-lead__content-form {
    margin-top: 25px;
}

.modal-lead__content-note {
    margin-top: 25px;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    line-height: normal;
}

.fade-in {
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

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

    50% {
        transform: scale(0.8);
    }

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

.cta-form {
    max-width: 350px;
    font-size: 18px;
    margin: 0 auto;
}

.cta-form-input-main input {
    height: 40px;
    width: 100%;
    padding-left: 10px;
    border-radius: 12px;
    background: #e6f9f6;
    color: #000;
    font-size: 1rem;
    line-height: 20px;
    border: none;
    outline: none;
}

.cta-form-input-main {
    margin: 16px 0;
}

.cta-form-input-end {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
}

.cta-form-button {
    width: 100%;
    height: 45px;
    border: none;
    outline: none;
    margin: 0 auto;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    background: #000;
    color: #fff;
    font-size: 16px;
    line-height: 22px;
    position: relative;
}

.cta-form-button:hover {
    background-color: #333;
}

.iti__selected-dial-code{
    font-size: 16px;
}

.error-message{
    padding-top: 20px;
    text-align: center;
    line-height: normal;
}