.true-for-wrapper{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:0px 0px;
    position:relative;
    overflow:hidden;
}

.true-for-wrapper::before{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    border-radius:50%;
    background:linear-gradient(135deg,#0d6efd,#42b7ff);
    top:-120px;
    right:-80px;
    opacity:.08;
}

.true-for-wrapper::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    background:linear-gradient(135deg,#00d4ff,#0d6efd);
    left:-100px;
    bottom:-100px;
    opacity:.08;
}

.true-for-card{
    width:100%;
    max-width:650px;
    background:#fff;
    border-radius:22px;
    padding:10px 40px 10px 40px;
    box-shadow:0 15px 45px rgba(0,0,0,.08),0 5px 15px rgba(0,0,0,.05);
    position:relative;
    z-index:2;
    animation:trueForFadeUp .7s ease;
    border:1px solid rgba(13,110,253,.08);
}
.jj{
    margin-bottom: 0px !important;
}
@keyframes trueForFadeUp{
    from{
        opacity:0;
        transform:translateY(35px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.true-for-card .form-group{
    margin-bottom:20px;
}
 .true-for-card .g-recaptcha{
        transform:scale(.86);
        transform-origin:left top;
    }

.true-for-card .row{
    margin-bottom:0;
}

.true-for-card input,
.true-for-card textarea,
.true-for-card select{
    width:100%;
    height:56px;
    border:1px solid #e4e8f0;
    background:#f8fafc;
    border-radius:14px;
    padding:0 18px;
    font-size:15px;
    font-weight:500;
    transition:.35s;
    outline:none;
    box-shadow:none;
}

.true-for-card textarea{
    height:60px;
    padding-top:16px;
    resize:none;
}

.true-for-card input:hover,
.true-for-card textarea:hover,
.true-for-card select:hover{
    border-color:#0d6efd;
}

.true-for-card input:focus,
.true-for-card textarea:focus,
.true-for-card select:focus{
    background:#fff;
    border-color:#0d6efd;
    box-shadow:0 0 0 5px rgba(13,110,253,.12);
}

.true-for-card input::placeholder,
.true-for-card textarea::placeholder{
    color:#8b95a5;
}

.true-for-card .g-recaptcha{
    display:inline-block;
    transform-origin:left center;
}

.true-for-card button{
    width:100%;
    height:58px;
    border:none;
    border-radius:14px;
    background:linear-gradient(135deg,#0d6efd,#0095ff);
    color:#fff;
    font-size:16px;
    font-weight:600;
    letter-spacing:.5px;
    transition:.35s;
    box-shadow:0 15px 30px rgba(13,110,253,.25);
}

.true-for-card button:hover{
    transform:translateY(-4px);
    box-shadow:0 20px 35px rgba(13,110,253,.35);
    background:linear-gradient(135deg,#0957d4,#0074e8);
}

.true-for-card button i{
    margin-right:8px;
}

@media(max-width:991px){
    .true-for-card{
        padding:35px 28px;
    }
}

@media(max-width:767px){
    .true-for-wrapper{
        padding:25px 10px;
    }

    .true-for-card{
        padding:28px 22px;
        border-radius:18px;
    }

    .true-for-card input,
    .true-for-card textarea,
    .true-for-card select{
        height:52px;
        font-size:14px;
    }

    .true-for-card textarea{
        height:130px;
    }

    .true-for-card button{
        height:54px;
    }
}

@media(max-width:480px){
    .true-for-card{
        padding:22px 18px;
    }

    .true-for-card .g-recaptcha{
        transform:scale(.86);
        transform-origin:left top;
    }
}