.c-dialog-wrapper {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background-color: transparent;
}

.c-dialog {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 10000;
    padding: 66px 30px;
    width: 600px;
    height: 640px;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 8px 12px 48px 0px #000026;
    box-sizing: border-box;
}

.c-dialog .c-header {
    position: relative;
}

.c-dialog .logo {
    margin: 0 auto;
    width: 180px;
    height: 48px;
    background: url('images/account/logo-black.png') no-repeat center center;
    background-size: cover;
}

.c-dialog .close {
    position: absolute;
    right: 16px;
    top: 16px;
    width: 32px;
    height: 32px;
    background: url('images/close.png') no-repeat center center;
    background-size: cover;
    cursor: pointer;
}

.c-dialog .close:hover {
    background-image: url('images/close-hover.png');
}

.c-dialog .c-dialog-content {
    display: none;
    margin-top: 59px;
}

.c-dialog .title {
    font-size: 44px;
    font-weight: 600;
    color: #313131;
}

.c-dialog .form {
    margin-top: 35px;
}

.c-dialog .form-item {
    position: relative;
    margin-bottom: 32px;
}

.c-dialog .form-item .label {
    position: absolute;
    left: 12px;
    top: 0;
    transform: translateY(-50%);
    z-index: 10;
    padding: 0 5px;
    height: 22px;
    background-color: #fff;
    text-align: center;
    line-height: 22px;
    color:#1C1B1F;
}

.c-dialog .form-item .input-text-wrapper {
    position: relative;
}

.c-dialog .form-item .input-text {
    padding: 12px 16px;
    width: 536px;
    height: 64px;
    border: 1px solid #79747E;
    border-radius: 4px;
    box-sizing: border-box;
}

.c-dialog .form-item .eye {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: url('images/account/eye-off.png') no-repeat center center;
    background-size: 50%;
    cursor: pointer;
}

.c-dialog .form-item .eye-on {
    background-image: url('images/account/eye-on.png');
}

.c-dialog .form-item .help {
    display: none;
    font-size: 14px;
    color:#FF8682;
}

.c-dialog .help-resent,
.c-dialog .help-forget-password {
    text-align: center;
    line-height: 22px;
    color:#313131;
}

.c-dialog .help-resent a,
.c-dialog .help-forget-password a {
    color: #2273FF;
}

.c-dialog .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 48px;
    width: 536px;
    height: 64px;
    background-color: #416999;
    border: none;
    border-radius: 8px;
    font-size: 28px;
    font-weight: 600;
    color: #f3f3f3;
    cursor: pointer;
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
    .c-dialog {
        padding: 30px 15px;
        width: 340px;
        height: 372px;
    }

    .c-dialog .logo {
        width: 120px;
        height: 32px;
    }

    .c-dialog .close {
        right: 8px;
        top: 8px;
        width: 20px;
        height: 20px;
    }

    .c-dialog .c-dialog-content {
        margin-top: 32px;
    }

    .c-dialog .title {
        font-size: 26px;
    }

    .c-dialog .form {
        margin-top: 20px;
    }

    .c-dialog .form-item {
        margin-bottom: 18px;
    }

    .c-dialog .form-item .label {
        left: 9px;
        padding: 0 2px;
        height: 14px;
        line-height: 14px;
        font-size: 10px;
    }

    .c-dialog .form-item .input-text {
        padding: 8px 10px;
        width: 312px;
        height: 38px;
    }

    .c-dialog .form-item .eye {
        width: 30px;
        height: 30px;
    }

    .c-dialog .form-item .help {
        font-size: 9px;
    }

    .c-dialog .btn {
        margin-top: 28px;
        width: 311px;
        height: 40px;
        border-radius: 4px;
        font-size: 16px;
    }
}
