.c-fpage {
    align-self: center;
    max-width: 330px;
    margin: 0 auto;
}

.c-fpage__box {
    background-color: #fff;
    border-radius: 15px;
    text-align: center;
    padding: 1.4rem 1rem;
    width: 330px;
}

.c-fpage__title {
    color: #50535a;
    font-weight: 400;
    line-height: 1.7rem;
    font-size: 18px;
    margin-bottom: 1rem;
}

.c-fpage__text {
    font-size: .9rem;
    color: #50535a;
    line-height: normal;
    margin-bottom: 1rem;
}

.c-fpage__form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.c-fpage__form.is-visible {
    display: flex;
}

.c-fpage__btn {
    width: 100%;
    display: block;
    padding: 8px 1rem;
    text-align: center;
    margin: 1rem auto;
    border-radius: 50px;
}

.c-fpage__btn--mag {
    margin: 1rem auto 0;
}

.c-fpage__form .box-cel {
    border: solid 1px #c3c3c3;
    width: 100%;
    height: 47px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    border-radius: 40px;
    padding: 8px 20px;
    position: relative;
}

.c-fpage__form .box-cel:before {
    position: absolute;
    right: 10px;
    font-size: 25px;
    color: #c3c3c3;
}

.c-fpage__form .box-cel label {
    color: #009df2;
}

.c-fpage__form input {
    width: 100%;
    padding: 0;
    border-radius: 3px;
    border: none;
}

.text-error {
    color: #ff0000;
}

.c-fpage__form .accept {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin: 0;
    gap: 5px;
    text-align: left;
    margin-top: 10px;
}

.c-fpage__form .accept input {
    width: auto;
    margin-top: 7px;
}

.c-fpage__form .check-politicas {
    font-size: 12px;
}

.c-fpage__form .enviarForm {
    width: 80%;
    max-width: 140px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #019df4;
    color: white;
    margin: 8px 0;
    border: none;
    border-radius: 22px;
    cursor: pointer;
    font-weight: 600;
    font-size: 10px;
    margin-top: 11%;
    margin: 20px auto 0;
}

.c-fpage__form .enviarForm.disabled {
    background-color: #589cf1;
    cursor: not-allowed;
}

.c-fpage__form .enviarForm.error {
    background-color: #e63780 !important;
    border: #e63780 !important;
    color: white !important;
}

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

.c-fpage__form .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;
}

.c-fpage__form .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;
}

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

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

@media (min-width: 768px) {

    .c-fpage__title {
        width: 100%;
        font-size: 1.2rem;
        line-height: 23px;
    }

    .c-fpage__form .enviarForm {
        max-width: 170px;
        height: 35px;
        font-size: 14px;
    }
}