* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: none;
}

.app {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../images/img_bg.png) 50% no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.Container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Container .c-left {
    width: 460px;
    height: 692px;
    /* background-image: url(../images/img_popup.png); */
    box-shadow: 0px 2px 24px 0px rgba(0, 0, 0, 0.25);
    border-radius: 16px 0 0 16px;
    /* border-top-right-radius: ; */
}

.Container .c-right {
    max-width: 460px;
    height: 692px;
    padding: 42px;
    background: #323D66;
    box-shadow: 0px 2px 24px 0px rgba(0, 0, 0, 0.25);
    /* border-radius: 16px; */
    border-radius: 0 16px 16px 0;
}

.Container .c-right .c-logo {
    display: flex;
    height: 80px;
    align-items: flex-end;
}

.Container .c-right .c-title {
    margin-top: 16px;
    width: 378px;
    height: 40px;
    font-family: PingFangSC-Semibold;
    font-size: 28px;
    color: #FFFFFF;
    font-weight: 600;
    margin-bottom: 40px;
}

.Container .c-right .c-input-box .c-txt {
    width: 378px;
    height: 20px;
    font-family: PingFangSC-Regular;
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 400;
}

.Container .c-right .c-input-box .c-input {
    margin-top: 10px;
    width: 378px;
    height: 56px;
    background: #222A47;
    border-radius: 8px;
    line-height: 56px;
    font-family: PingFangSC-Regular;
    margin-bottom: 24px;
    color: #FCFAFA;
    font-weight: 400;
    font-size: 16px;
    padding-left: 16px;
}

input::placeholder {
    font-family: PingFangSC-Regular;
    font-size: 14px;
    color: #424E7E;
    font-weight: 400;
    /* padding-left: 16px; */
}

.Container .c-right .c-input-box .c-input-yzm {
    margin-top: 10px;
    width: 200px;
    height: 56px;
    background: #222A47;
    border-radius: 8px;
    line-height: 56px;
    font-family: PingFangSC-Regular;
    color: #FCFAFA;
    font-weight: 400;
    font-size: 16px;
    padding-left: 16px;
}

.Container .c-right .c-input-box .c-yzm-img {
    width: 168px;
    height: 56px;
    background: #FCFAFA;
    border-radius: 8px;
    vertical-align: middle;
}

.Container .c-right .c-button {
    margin-top: 40px;
    width: 377px;
    height: 56px;
    background-image: linear-gradient(135deg, #7146FF 0%, #4A69FF 100%);
    border-radius: 8px;
    font-size: 16px;
    color: #FFFFFF;
    text-align: center;
    font-weight: 400;
}

@media screen and (max-width: 500px) {
    .Container .c-right {
        /* width: 300px; */
        width: 100% !important;
        height: 100% !important;
    }
    /* .Container .c-right .c-input-box {
        display: flex;
        justify-content: center;
        align-items: center;
    } */
    .Container .c-right .c-input-box .c-txt {
        width: 100%;
    }
    .Container .c-right .c-input-box .c-input {
        width: 100%;
    }
    .Container .c-right .c-input-box .c-input-yzm {
        width: 50%;
        float: left;
    }
    .Container .c-right .c-input-box .c-yzm-img {
        width: 50%;
        float: left;
        margin-top: 10px;
    }
    .Container .c-right .c-button {
        width: 100%;
    }
}
