.UIFormTemplate_style{
    background: url(images/bg-r.png) no-repeat right;
    background-size: contain;
    content: '';
    display: block;
    padding: 30px;
    position: relative;
    background-size: 100%;
    margin: 20px 0;
    
}
.UIFormTemplate_style:before{
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(images/left.png) no-repeat left;
    background-size: contain;
    display: block;
    position: absolute;
    z-index: 0;
}
.UIFormTemplate{
    /* margin: 20px 0; */
    box-shadow: 0px 4px 15px 0px #81818140;
    background: #ffffff;
    border-radius: 8px;
    border-top: 7px solid #345CE5;
    padding: 20px;
    width: 360px;
    margin-left: 60%;
    /* padding: 20px; */
    z-index: 2;
    position: relative;
}
.UIFormTemplate .ErrorPanel{
    margin: 10px 0;
}
.UIFormTemplate .ErrorPanel>span{
     font-family: Google Sans;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: #DA251C;
}
.UIFormTemplate .ErrorPanel>span>span.success{
    color: #00fa1a;
    
}
.UIFormTemplate .FormView select,
.UIFormTemplate .FormView input[type='text'],
.UIFormTemplate .VerifyCode>.ImageWrap>.Text{
    border: 0.8px solid #3AA4F6;
    border-radius: 200px;
    padding: 15px;
    width: 100%;
    font-family: Google Sans;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #707070;

}
.UIFormTemplate .FormView p{
    margin-bottom: 20px;
}
.UIFormTemplate .VerifyCode{
}
.UIFormTemplate .VerifyCode>.ImageWrap{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
    margin: 0 auto;
}
.UIFormTemplate .VerifyCode>.LableWrap{
    display: none;
}
.UIFormTemplate .ButtonPanel .SendButton{
    width: 100%;
    border: 0;
    outline: 0;
    background: #0C5ADB;
    border-radius: 200px;
    padding: 15px;
    margin-top: 20px;
    font-family: Google Sans;
    font-weight: 500;
    font-size: 17px;
    line-height: 22px;
    text-transform: uppercase;
    color: #FFFFFF;
}
.UIFormTemplate .ButtonPanel .SendButton:hover{
    background: #003995;
}
@media only screen and (max-width: 768px){
    .UIFormTemplate_style{
        padding: 20px 0;
        background: unset;
        margin: 0;

    }
    .UIFormTemplate_style:before{
         background-size: 100%;
         background-image: url(images/bg-mobile.png);
         filter: blur(10px);
         -webkit-filter: blur(10px);
    }
    .UIFormTemplate_style .UIFormTemplate{
        width: calc(100vw - 40px);
        margin: 20px;
        filter: unset;
        -webkit-filter: unset;
    }
    
}