#APP{
    padding-top: 0;
    font-family: Inter,sans-serif;
}
.showBoxWrap{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100vw;
    background: linear-gradient(180deg, #F4F9FF 0%, #EEF6FF 100%) !important;
}
.showBoxWrap h1{
    text-align: center;
    font-weight: 700;
    font-size: 36px;
    line-height: 44px;
    color: #232323;
    margin-bottom: 40px;
}

.showBox{
    max-width: 622px;
    width: 90%;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0px 8px 10px -5px #00000014;
    /*box-shadow: 0px 16px 24px 2px #0000000A;*/
    /*box-shadow: 0px 6px 30px 5px #0000000D;*/
    box-sizing: border-box;
    padding: 32px;

}
.showBox h2{
    text-align: center;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #232323;
    margin-bottom: 16px;
}
.showBox .flexBox{
    display: flex;
    justify-content: left;
    gap: 16px;
}
.flexBox .el-form-item{
    width: 50%;
}
.el-select,.el-input,.el-input__inner{
    width: 100%;
}
.el-form-item{
    margin-bottom: 16px;
}
.el-form-item__label{
    font-family: Inter,sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    color: #232323;
    margin-bottom: 8px;
}
.showBox .notes{
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #6A6969;
}
.showBox .notes a{
    color: #4485E9;
}
.showBox .btn{
    cursor: pointer;
    max-width: 296px;
    text-align: center;
    height: 40px;
    line-height: 40px;
    font-weight: 500;
    font-size: 14px;
    color: #F5F2EA;
    margin: 16px auto 0;
    border-radius: 4px;
    background: #0D4C80;
}

@media (max-width: 769px) {
    .showBox .flexBox{
        flex-wrap: wrap;
        gap: 0;
    }
    .el-form-item__content,.el-form-item,.el-select,.el-input,.el-input__inner{
        width: 100% !important;
    }
}





