﻿/* ===============================
   Register Page
================================ */
.register-page {
    color: #ffffff;
}

.register-box {
    max-width: 560px;
    margin: 0 auto;
    padding: 46px 44px 42px 44px;
    box-sizing: border-box;
    border-radius: 12px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 22px 55px rgba(0,0,0,.18);
}

.register-head {
    margin-bottom: 34px;
    text-align: center;
}

.register-head span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #00CFA9;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: .8px;
}

.register-head span i {
    font-size: 18px;
}

.register-head h1 {
    margin: 0 0 14px 0;
    color: #ffffff;
    font-size: 2rem;
    line-height: 1.35;
    font-weight: 700;
}

.register-head p {
    max-width: 430px;
    margin: 0 auto;
    color: rgba(255,255,255,.86);
    font-size: 15px;
    line-height: 1.65;
}

.register-form-row {
    margin-bottom: 20px;
}

.register-form-row label {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
}

.register-form-row label em {
    color: #00CFA9;
    font-style: normal;
}

.register-input-box {
    position: relative;
}

.register-input-box i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #00CFA9;
    font-size: 16px;
}

.register-input-box input {
    width: 100%;
    height: 48px;
    padding: 0 16px 0 46px;
    box-sizing: border-box;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 8px;
    background: #ffffff;
    color: #111111;
    font-size: 15px;
    line-height: 48px;
    outline: none;
}

.register-input-box input:focus {
    border-color: #00CFA9;
    box-shadow: 0 0 0 3px rgba(0,207,169,.15);
}

.register-code-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.register-code-box .register-input-box {
    flex: 1;
    min-width: 0;
}

.register-code-btn,
.register-img-code {
    height: 48px;
    min-width: 120px;
    padding: 0 15px;
    box-sizing: border-box;
    border-radius: 8px;
    color: #ffffff !important;
    text-decoration: none;
    background: linear-gradient(90deg, #00A4FD 0%, #00CFA9 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: all .25s ease;
}

.register-img-code {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
}

.register-img-code img {
    display: block;
    border-radius: 4px;
}

.register-code-btn:hover,
.register-img-code:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0,164,253,.25);
}

.register-agree {
    margin: 4px 0 24px 0;
}

.register-agree label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: rgba(255,255,255,.88);
    font-size: 14px;
    line-height: 1.55;
    cursor: pointer;
}

.register-agree input {
    margin-top: 4px;
}

.register-agree a {
    color: #00CFA9;
    text-decoration: none;
    font-weight: 600;
}

.register-agree a:hover {
    color: #00A4FD;
}

.register-submit-btn {
    width: 100%;
    height: 48px;
    border: 0;
    border-radius: 26px;
    background: linear-gradient(90deg, #00A4FD 0%, #00CFA9 100%);
    color: #ffffff;
    font-size: 16px;
    line-height: 48px;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s ease;
}

.register-submit-btn i {
    margin-left: 10px;
}

.register-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0,164,253,.28);
}

.register-submit-btn.disabled,
.register-submit-btn:disabled {
    opacity: .55;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.register-login {
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.86);
    font-size: 15px;
    line-height: 1.5;
    text-align: center;
}

.register-login a {
    color: #00CFA9;
    font-weight: 600;
    text-decoration: none;
}

.register-login a:hover {
    color: #00A4FD;
}


/* ===============================
   Register State
================================ */
.register-state-box {
    max-width: 760px;
    margin: 0 auto;
    padding: 52px 46px;
    box-sizing: border-box;
    border-radius: 12px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    text-align: center;
    box-shadow: 0 22px 55px rgba(0,0,0,.18);
}

.register-state-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px auto;
    border-radius: 50%;
    color: #ffffff;
    font-size: 32px;
    line-height: 72px;
}

.register-state-icon.success {
    background: linear-gradient(90deg, #00A4FD 0%, #00CFA9 100%);
}

.register-state-icon.warning {
    background: linear-gradient(90deg, #ffb347 0%, #ffcc33 100%);
}

.register-state-icon.error {
    background: linear-gradient(90deg, #ff5f6d 0%, #ff9966 100%);
}

.register-state-box h1 {
    margin: 0 0 18px 0;
    color: #ffffff;
    font-size: 2rem;
    line-height: 1.35;
}

.register-state-box p {
    max-width: 620px;
    margin: 0 auto 12px auto;
    color: rgba(255,255,255,.9);
    font-size: 16px;
    line-height: 1.7;
}

.register-state-box a {
    color: #00CFA9;
    text-decoration: none;
    font-weight: 600;
}

.register-state-note {
    display: inline-block;
    margin-top: 18px;
    padding: 12px 18px;
    border-radius: 8px;
    color: rgba(255,255,255,.92);
    background: rgba(0,164,253,.14);
    border: 1px solid rgba(0,207,169,.25);
}

.register-state-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
}

.register-state-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 44px;
    padding: 0 24px;
    box-sizing: border-box;
    border-radius: 24px;
    color: #ffffff !important;
    background: linear-gradient(90deg, #00A4FD 0%, #00CFA9 100%);
    text-decoration: none;
    transition: all .25s ease;
}

.register-state-btn i {
    margin-left: 8px;
}

.register-state-btn-line {
    background: transparent;
    border: 1px solid rgba(255,255,255,.22);
}

.register-state-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0,164,253,.25);
}


/* ===============================
   Register Popup
================================ */
.register-pop-mask,
.privacy-modal-mask {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9998;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(0,0,0,.48);
}

.register-pop,
.privacy-modal {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
}

.register-pop-box {
    position: relative;
    width: 390px;
    max-width: calc(100% - 40px);
    padding: 38px 30px 30px 30px;
    box-sizing: border-box;
    border-radius: 14px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0,0,0,.25);
}

.register-pop-close,
.privacy-modal-close {
    position: absolute;
    right: 14px;
    top: 14px;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 50%;
    background: #f2f5f8;
    color: #666666;
    font-size: 14px;
    line-height: 30px;
    cursor: pointer;
    transition: all .25s ease;
    z-index: 2;
}

.register-pop-close:hover,
.privacy-modal-close:hover {
    background: #ff5f6d;
    color: #ffffff;
}

.register-pop-loading {
    width: 44px;
    height: 44px;
    margin: 0 auto 20px auto;
    display: none;
    border: 4px solid #e8f6ff;
    border-top-color: #00A4FD;
    border-right-color: #00CFA9;
    border-radius: 50%;
    animation: registerPopLoading .9s linear infinite;
}

@keyframes registerPopLoading {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.register-pop-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 20px auto;
    display: none;
    border-radius: 50%;
    line-height: 52px;
    font-size: 25px;
    color: #ffffff;
}

.register-pop-icon.success {
    display: block;
    background: linear-gradient(90deg, #00A4FD 0%, #00CFA9 100%);
}

.register-pop-icon.success::before {
    content: "✓";
}

.register-pop-icon.error {
    display: block;
    background: linear-gradient(90deg, #ff5f6d 0%, #ff9966 100%);
}

.register-pop-icon.error::before {
    content: "!";
    font-weight: 700;
}

.register-pop-title {
    margin-bottom: 10px;
    color: #111111;
    font-size: 21px;
    line-height: 1.35;
    font-weight: 700;
}

.register-pop-text {
    margin-bottom: 24px;
    color: #555555;
    font-size: 15px;
    line-height: 1.65;
}

.register-pop-ok {
    display: none;
    min-width: 125px;
    height: 42px;
    padding: 0 24px;
    border: 0;
    border-radius: 24px;
    background: linear-gradient(90deg, #00A4FD 0%, #00CFA9 100%);
    color: #ffffff;
    font-size: 15px;
    cursor: pointer;
    transition: all .25s ease;
}

.register-pop-ok:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0,164,253,.25);
}


/* ===============================
   Privacy Modal
================================ */
.privacy-modal-box {
    position: relative;
    width: 760px;
    max-width: calc(100% - 40px);
    max-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    border-radius: 14px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,.25);
}

.privacy-modal-head {
    padding: 24px 30px;
    border-bottom: 1px solid #edf1f5;
}

.privacy-modal-head h2 {
    margin: 0;
    color: #111111;
    font-size: 22px;
    line-height: 1.35;
}

.privacy-modal-head h2 i {
    margin-right: 8px;
    color: #00CFA9;
}

.privacy-modal-body {
    padding: 24px 30px;
    overflow-y: auto;
    color: #333333;
    font-size: 15px;
    line-height: 1.75;
}

.privacy-modal-foot {
    padding: 18px 30px;
    border-top: 1px solid #edf1f5;
    text-align: right;
}

.privacy-modal-btn {
    min-width: 130px;
    height: 42px;
    border: 0;
    border-radius: 24px;
    background: linear-gradient(90deg, #00A4FD 0%, #00CFA9 100%);
    color: #ffffff;
    font-size: 15px;
    cursor: pointer;
}


/* ===============================
   Mobile
================================ */
@media screen and (max-width: 768px) {
    .register-page {
        padding: 0 15px;
        box-sizing: border-box;
    }

    .register-box,
    .register-state-box {
        padding: 36px 22px 32px 22px;
        border-radius: 10px;
    }

    .register-head {
        margin-bottom: 28px;
    }

    .register-head h1,
    .register-state-box h1 {
        font-size: 1.7rem;
        line-height: 1.4;
    }

    .register-head p,
    .register-state-box p {
        font-size: 14px;
        line-height: 1.7;
    }

    .register-code-box {
        display: block;
    }

    .register-code-btn,
    .register-img-code {
        width: 100%;
        margin-top: 10px;
    }

    .register-submit-btn {
        height: 44px;
        line-height: 44px;
        font-size: 15px;
    }

    .register-state-actions {
        display: block;
    }

    .register-state-btn {
        width: 100%;
        margin-bottom: 12px;
    }

    .register-state-btn:last-child {
        margin-bottom: 0;
    }

    .register-pop-box {
        padding: 34px 22px 26px 22px;
    }

    .register-pop-title {
        font-size: 20px;
    }

    .privacy-modal-box {
        max-width: calc(100% - 30px);
        max-height: calc(100vh - 50px);
    }

    .privacy-modal-head,
    .privacy-modal-body,
    .privacy-modal-foot {
        padding-left: 20px;
        padding-right: 20px;
    }
}


/* ===============================
   Register Page
================================ */
.register-page {
    color: #ffffff;
}

.register-box {
    max-width: 560px;
    margin: 0 auto;
    padding: 46px 44px 42px 44px;
    box-sizing: border-box;
    border-radius: 12px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 22px 55px rgba(0,0,0,.18);
}

.register-head {
    margin-bottom: 34px;
    text-align: center;
}

    .register-head span {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 12px;
        color: #00CFA9;
        font-size: 15px;
        line-height: 1.4;
        font-weight: 600;
        letter-spacing: .8px;
    }

        .register-head span i {
            font-size: 18px;
        }

    .register-head h1 {
        margin: 0 0 14px 0;
        color: #ffffff;
        font-size: 2rem;
        line-height: 1.35;
        font-weight: 700;
    }

    .register-head p {
        max-width: 430px;
        margin: 0 auto;
        color: rgba(255,255,255,.86);
        font-size: 15px;
        line-height: 1.65;
    }

.register-form-row {
    margin-bottom: 20px;
}

    .register-form-row label {
        display: block;
        margin-bottom: 8px;
        color: #ffffff;
        font-size: 14px;
        line-height: 1.4;
        font-weight: 600;
    }

        .register-form-row label em {
            color: #00CFA9;
            font-style: normal;
        }

.register-input-box {
    position: relative;
}

    .register-input-box i {
        position: absolute;
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
        color: #00CFA9;
        font-size: 16px;
    }

    .register-input-box input {
        width: 100%;
        height: 48px;
        padding: 0 16px 0 46px;
        box-sizing: border-box;
        border: 1px solid rgba(255,255,255,.18);
        border-radius: 8px;
        background: #ffffff;
        color: #111111;
        font-size: 15px;
        line-height: 48px;
        outline: none;
    }

        .register-input-box input:focus {
            border-color: #00CFA9;
            box-shadow: 0 0 0 3px rgba(0,207,169,.15);
        }

.register-code-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .register-code-box .register-input-box {
        flex: 1;
        min-width: 0;
    }

.register-code-btn,
.register-img-code {
    height: 48px;
    min-width: 120px;
    padding: 0 15px;
    box-sizing: border-box;
    border-radius: 8px;
    color: #ffffff !important;
    text-decoration: none;
    background: linear-gradient(90deg, #00A4FD 0%, #00CFA9 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: all .25s ease;
}

.register-img-code {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
}

    .register-img-code img {
        display: block;
        border-radius: 4px;
    }

    .register-code-btn:hover,
    .register-img-code:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 18px rgba(0,164,253,.25);
    }

/* Agreement */
.register-agree {
    margin: 6px 0 24px 0;
}

.register-agree-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.9);
    font-size: 15px;
    line-height: 1.5;
    cursor: pointer;
}

    .register-agree-label input {
        display: none;
    }

.register-agree-check {
    position: relative;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    box-sizing: border-box;
    border: 2px solid rgba(255,255,255,.75);
    border-radius: 3px;
    background: rgba(255,255,255,.08);
    transition: all .25s ease;
}

    .register-agree-check::after {
        content: "";
        position: absolute;
        left: 4px;
        top: 0;
        width: 5px;
        height: 9px;
        border: solid #ffffff;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg) scale(0);
        opacity: 0;
        transition: all .2s ease;
    }

.register-agree-label input:checked + .register-agree-check {
    border-color: #00CFA9;
    background: linear-gradient(90deg, #00A4FD 0%, #00CFA9 100%);
}

    .register-agree-label input:checked + .register-agree-check::after {
        opacity: 1;
        transform: rotate(45deg) scale(1);
    }

.register-agree-text a {
    color: #00CFA9;
    font-weight: 700;
    text-decoration: none;
}

    .register-agree-text a:hover {
        color: #00A4FD;
    }

.register-submit-btn {
    width: 100%;
    height: 48px;
    border: 0;
    border-radius: 26px;
    background: linear-gradient(90deg, #00A4FD 0%, #00CFA9 100%);
    color: #ffffff;
    font-size: 16px;
    line-height: 48px;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s ease;
}

    .register-submit-btn i {
        margin-left: 10px;
    }

    .register-submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 22px rgba(0,164,253,.28);
    }

    .register-submit-btn.disabled,
    .register-submit-btn:disabled {
        opacity: .55;
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
    }

.register-login {
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.86);
    font-size: 15px;
    line-height: 1.5;
    text-align: center;
}

    .register-login a {
        color: #00CFA9;
        font-weight: 600;
        text-decoration: none;
    }

        .register-login a:hover {
            color: #00A4FD;
        }

/* ===============================
   State Page
================================ */
.register-state-box {
    max-width: 760px;
    margin: 0 auto;
    padding: 52px 46px;
    box-sizing: border-box;
    border-radius: 12px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    text-align: center;
    box-shadow: 0 22px 55px rgba(0,0,0,.18);
}

.register-state-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px auto;
    border-radius: 50%;
    color: #ffffff;
    font-size: 32px;
    line-height: 72px;
}

    .register-state-icon.success {
        background: linear-gradient(90deg, #00A4FD 0%, #00CFA9 100%);
    }

    .register-state-icon.warning {
        background: linear-gradient(90deg, #ffb347 0%, #ffcc33 100%);
    }

    .register-state-icon.error {
        background: linear-gradient(90deg, #ff5f6d 0%, #ff9966 100%);
    }

.register-state-box h1 {
    margin: 0 0 18px 0;
    color: #ffffff;
    font-size: 2rem;
    line-height: 1.35;
}

.register-state-box p {
    max-width: 620px;
    margin: 0 auto 12px auto;
    color: rgba(255,255,255,.9);
    font-size: 16px;
    line-height: 1.7;
}

.register-state-box a {
    color: #00CFA9;
    text-decoration: none;
    font-weight: 600;
}

.register-state-note {
    display: inline-block;
    margin-top: 18px;
    padding: 12px 18px;
    border-radius: 8px;
    color: rgba(255,255,255,.92);
    background: rgba(0,164,253,.14);
    border: 1px solid rgba(0,207,169,.25);
}

.register-state-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
}

.register-state-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 44px;
    padding: 0 24px;
    box-sizing: border-box;
    border-radius: 24px;
    color: #ffffff !important;
    background: linear-gradient(90deg, #00A4FD 0%, #00CFA9 100%);
    text-decoration: none;
    transition: all .25s ease;
}

    .register-state-btn i {
        margin-left: 8px;
    }

.register-state-btn-line {
    background: transparent;
    border: 1px solid rgba(255,255,255,.22);
}

.register-state-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0,164,253,.25);
}

/* ===============================
   Popup
================================ */
.register-pop-mask,
.privacy-modal-mask {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9998;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(0,0,0,.52);
}

.register-pop,
.privacy-modal {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
}

.register-pop-box {
    position: relative;
    width: 390px;
    max-width: calc(100% - 40px);
    padding: 38px 30px 30px 30px;
    box-sizing: border-box;
    border-radius: 14px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0,0,0,.25);
}

.register-pop-close,
.privacy-modal-close {
    position: absolute;
    right: 14px;
    top: 14px;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 50%;
    background: #f2f5f8;
    color: #666666;
    font-size: 14px;
    line-height: 32px;
    cursor: pointer;
    transition: all .25s ease;
    z-index: 2;
}

    .register-pop-close:hover,
    .privacy-modal-close:hover {
        background: #ff5f6d;
        color: #ffffff;
    }

.register-pop-loading {
    width: 44px;
    height: 44px;
    margin: 0 auto 20px auto;
    display: none;
    border: 4px solid #e8f6ff;
    border-top-color: #00A4FD;
    border-right-color: #00CFA9;
    border-radius: 50%;
    animation: registerPopLoading .9s linear infinite;
}

@keyframes registerPopLoading {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.register-pop-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 20px auto;
    display: none;
    border-radius: 50%;
    line-height: 52px;
    font-size: 25px;
    color: #ffffff;
}

    .register-pop-icon.success {
        display: block;
        background: linear-gradient(90deg, #00A4FD 0%, #00CFA9 100%);
    }

        .register-pop-icon.success::before {
            content: "✓";
        }

    .register-pop-icon.error {
        display: block;
        background: linear-gradient(90deg, #ff5f6d 0%, #ff9966 100%);
    }

        .register-pop-icon.error::before {
            content: "!";
            font-weight: 700;
        }

.register-pop-title {
    margin-bottom: 10px;
    color: #111111;
    font-size: 21px;
    line-height: 1.35;
    font-weight: 700;
}

.register-pop-text {
    margin-bottom: 24px;
    color: #555555;
    font-size: 15px;
    line-height: 1.65;
}

.register-pop-ok {
    display: none;
    min-width: 125px;
    height: 42px;
    padding: 0 24px;
    border: 0;
    border-radius: 24px;
    background: linear-gradient(90deg, #00A4FD 0%, #00CFA9 100%);
    color: #ffffff;
    font-size: 15px;
    cursor: pointer;
    transition: all .25s ease;
}

    .register-pop-ok:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 18px rgba(0,164,253,.25);
    }

/* ===============================
   Privacy Modal
================================ */
.privacy-modal-box {
    position: relative;
    width: 760px;
    max-width: calc(100% - 40px);
    max-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    border-radius: 14px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 26px 70px rgba(0,0,0,.28);
}

.privacy-modal-head {
    padding: 24px 30px;
    border-bottom: 1px solid #edf1f5;
}

    .privacy-modal-head h2 {
        margin: 0;
        color: #111111;
        font-size: 22px;
        line-height: 1.35;
        font-weight: 700;
    }

        .privacy-modal-head h2 i {
            margin-right: 8px;
            color: #00CFA9;
        }

.privacy-modal-body {
    padding: 24px 30px;
    overflow-y: auto;
    color: #333333;
    font-size: 15px;
    line-height: 1.75;
}

    .privacy-modal-body p {
        margin: 0 0 14px 0;
    }

.privacy-modal-foot {
    padding: 18px 30px;
    border-top: 1px solid #edf1f5;
    text-align: right;
}

.privacy-modal-btn {
    min-width: 130px;
    height: 42px;
    border: 0;
    border-radius: 24px;
    background: linear-gradient(90deg, #00A4FD 0%, #00CFA9 100%);
    color: #ffffff;
    font-size: 15px;
    cursor: pointer;
    transition: all .25s ease;
}

    .privacy-modal-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 18px rgba(0,164,253,.25);
    }

/* ===============================
   Mobile
================================ */
@media screen and (max-width: 768px) {
    .register-page {
        padding: 0 15px;
        box-sizing: border-box;
    }

    .register-box,
    .register-state-box {
        padding: 36px 22px 32px 22px;
        border-radius: 10px;
    }

    .register-head {
        margin-bottom: 28px;
    }

        .register-head h1,
        .register-state-box h1 {
            font-size: 1.7rem;
            line-height: 1.4;
        }

        .register-head p,
        .register-state-box p {
            font-size: 14px;
            line-height: 1.7;
        }

    .register-code-box {
        display: block;
    }

    .register-code-btn,
    .register-img-code {
        width: 100%;
        margin-top: 10px;
    }

    .register-submit-btn {
        height: 44px;
        line-height: 44px;
        font-size: 15px;
    }

    .register-agree-label {
        align-items: flex-start;
        font-size: 14px;
    }

    .register-agree-check {
        margin-top: 3px;
    }

    .register-state-actions {
        display: block;
    }

    .register-state-btn {
        width: 100%;
        margin-bottom: 12px;
    }

        .register-state-btn:last-child {
            margin-bottom: 0;
        }

    .register-pop-box {
        padding: 34px 22px 26px 22px;
    }

    .register-pop-title {
        font-size: 20px;
    }

    .privacy-modal-box {
        max-width: calc(100% - 30px);
        max-height: calc(100vh - 50px);
    }

    .privacy-modal-head,
    .privacy-modal-body,
    .privacy-modal-foot {
        padding-left: 20px;
        padding-right: 20px;
    }
}