.call-content-form{
    padding: 16px 8px;
}

.call-item-form{
    position: relative;
    margin: 5px 0;
    width: 100%;
    text-align: left;
}

.call-item--2-row{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 8px;
}

.call-label-form {
    display: inline-block;
    margin-bottom: 4px;
    color: #1b3455;
    font-weight: bold;
    font-size: 4vw;
}

.call-input-form {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 0.25rem;
    height: 35px;
    padding: 8px 12px;
    border: 1px solid #ced4da;
    font-size: 3.6vw;
    font-weight: 400;
    line-height: 1.5; 
    color: #495057; 
}

.call-btn-form { 
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 220px;
    box-shadow: none;
    height: 35px;
    padding: 8px 16px;
    background-color: #1b3455;
    color: #ffffff;
    border: 1px solid #1b3455;
    border-radius: 25px;
    margin: 5px auto;
    text-align: center;
    font-size: 18px;
}

.call-error{
    display: none;
    color: #E63780;
    margin-top: 4px;
    font-size: 3.5vw;
    line-height: normal;
}

.call-btn-form.error {
    background-color: #E63780 !important;
    color: white;
}

.call-input-form.error,
.call-btn-form.error {
    border: 1px solid #E63780;
}

.call-input-form.error ~ .call-error{
    display: block;
}

.call-btn-form:hover{
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1) !important; 
}

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

.call-icon-spinner {
    -webkit-mask: url(/proxy/https/www.movistar.com.co/components/callbacks/simple/images/icon-spinner.svg) no-repeat 100% 100%;
    mask: url(/proxy/https/www.movistar.com.co/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;
    background-color: #fff;
}

.call-icon-send{
    background: url(/proxy/https/www.movistar.com.co/components/callbacks/simple/images/icono-success-whiteDarkBlue.svg) no-repeat center center;
    background-size: contain;
    height: 24px;
    width: 24px;
    margin-right: 12px;
}
.call-content-form .content-check{
    font-size: 13px;
    margin-top: 10px;
}
.call-content-form .content-check a{
    text-decoration: underline;
}

@media screen and (min-width: 500px) {
    .call-label-form {
        font-size: 14px;
    }
    
    .call-input-form,
    .call-error {
        font-size: 13px;
    }
}