.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: 36px 30px;
    width: 590px;
    height: 680px;
    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 .close {
    position: absolute;
    right: 13px;
    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.png');
}

.c-dialog .c-dialog-content {
    display: none;
}

.c-dialog .title {
    font-size: 45px;
    font-weight: 700;
    color: #000;
}

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

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

.c-dialog .form-item .label {
    display: block;
    margin-bottom: 10px;
    height: 25px;
    line-height: 25px;
    font-size: 20px;
    font-weight: 500;
    color: #000;
}

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

.c-dialog .form-item .input-text {
    padding: 24px;
    width: 530px;
    height: 84px;
    border: 2px solid #245324;
    border-radius: 15px;
    box-sizing: border-box;
}

.c-dialog .form-item .eye {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    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: 20px;
    color:#FF8682;
}

.c-dialog .help-resent,
.c-dialog .help-forget-password {
    margin-top: 16px;
    line-height: 22px;
    color:#000;
}

.c-dialog .help-resent a,
.c-dialog .help-forget-password a {
    color: #319E44;
    text-decoration: none;
}

.c-dialog .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    width: 530px;
    height: 84px;
    background-color: #319E44;
    border: none;
    border-radius: 15px;
    font-size: 28px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
}

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

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

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

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

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

    .c-dialog .form-item .label {
        margin-bottom: 5px;
        font-size: 12px;
    }

    .c-dialog .form-item .input-text {
        padding: 15px 14px;
        width: 305px;
        height: 50px;
    }

    .c-dialog .form-item .eye {
        right: 14px;
        width: 28px;
        height: 28px;
    }

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

    .c-dialog .help-resent,
    .c-dialog .help-forget-password {
        margin-top: 8px;
    }

    .c-dialog .btn {
        margin-top: 28px;
        width: 305px;
        height: 50px;
        border-radius: 8px;
        font-size: 16px;
    }
}
