.c-newsletter-app {
    padding: 1rem 16px 1rem;
}

.container_form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    align-items: center;
}

.banner-movistar {
    display: block;
    margin: 0 auto;
    width: 95%;
}

.c-promo_form {
    width: 95%;
    max-width: 400px;
    display: grid;
    border-radius: 8px;
    margin: 20px auto;
    padding: 20px;
    position: relative;
    background-color: var(--white);
}

.c-form_text {
    margin: 0 0 14px;
}

.c-promo_form .c-text-title {

    color: #313235;
    font-size: 27px;
    line-height: 33px;
}

.c-promo_form .c-text-description {
    font-size: 11px;
    margin: 0 0 6px;
    color: #313235;
}

.c-promo_form .box-form img {
    max-width: 170px;
}

.c-promo_form .c-form_inputs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.c-promo_form .c-form_inputs input {
    width: 100%;
    height: 30px;
    padding: 0 10px;
    font-size: 12px;
    color: #6B6B6B;
    border: 1px solid #B6B7B7;
    border-radius: 4px;
}

.c-form_inputs .c-form_inputsFlex {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.c-img_women {
    position: absolute;
    width: 122px;
    right: -12px;
    top: -50px;
}

.c-promo_form .btnfrm-send {
    color: var(--white);
    background-color: #E63780;
    padding: 6px 21px;
    border-radius: 45px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    font-size: 13px;
}

.c-promo_form .c-terms {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
    color: #6B6B6B;
}

.c-promo_form .c-terms input[type="checkbox"] {
    height: 18px;
    width: 18px;
}

.c-promo_form .c-terms label {
    font-size: 9px;
    line-height: 11px;
    display: inline-block;
}

.c-promo_form .c-terms a {
    text-decoration: underline;
}

.icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    transition: all .3s ease;
}

.icon-send {
    background: url(/components/callbacks/simple/images/icono-success-whiteDarkBlue.svg) no-repeat center center;
    background-size: contain;
    height: 24px;
    width: 24px;
    margin-right: 12px;
}

.icon-spinner {
    -webkit-mask: url(/components/callbacks/simple/images/icon-spinner.svg) no-repeat 100% 100%;
    mask: url(/components/callbacks/simple/images/icon-spinner.svg) no-repeat 100% 100%;
    -webkit-mask-size: cover;
    mask-size: cover;
    height: 24px;
    width: 24px;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

.c-banner_MiApp{
    max-width: 343px;
    position: relative;
}

.c-banner_MiApp a{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media screen and (min-width:768px) {
    .c-promo_form {
        padding: 12px 35px 6px 20px;
        width: 76%;
        max-width: 500px;
        grid-template-columns: 180px auto;
    }

    .c-form_inputs .c-form_inputsFlex {
        flex-direction: row;
    }

    .c-img_women {
        width: 210px;
        right: -22px;
        top: -5px;
    }

    .container_form {
        max-width: 1020px;
        display: flex;
        flex-direction: row;
        gap: 10px;
    }

    .c-promo_form .c-text-title {
        margin: 20px 0 0;
        font-size: 34px;
    }

    .banner-movistar {
        width: 100%;
        max-width: 610px;
        height: 160px;
        object-fit: contain;
    }

    .c-form_text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 25px;
    }
    .c-banner_MiApp{
        max-width: max-content;
        background-color: var(--white);
        border-radius: 8px;
    }
    .c-banner_MiApp a{
        display: none;
    }
}

@media screen and (min-width:1000px) {
    .c-img_women {
        width: 270px;
    }
}