#loading {
    display: block;
    position: fixed;
    background-color: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;

    .spinner {
        width: 50px;
        height: 50px;
        border: 5px solid #ffffff;
        border-top: 5px solid #F5A623;
        border-radius: 50%;
        animation: spin 1s linear infinite;
        margin-bottom: 20px;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


#captcha_main {
    display: none;
}

.captcha_root {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    background-color: rgba(255, 255, 255, 1);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #313131;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";

}

.main-wrapper {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
}

.main-content {
    margin: 8rem auto;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    width: 100%;
    max-width: 60rem;
}

.h1 {
    line-height: 3.75rem;
    font-size: 2.5rem;
    font-weight: 500;
}

.h2 {
    line-height: 2.25rem;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
}


.core-msg {
    line-height: 2.25rem;
    font-size: 1.5rem;
    font-weight: 400;
    margin-top: 4rem;
    margin: 2rem 0;
}

.captcha_div {
    width: 300px;
    height: 65px;

    background-color: red;


    #content {
        box-sizing: border-box;
        display: flex;
        gap: 7px;
        align-items: center;
        justify-content: space-between;
        border: 1px solid #e0e0e0;
        background-color: #fafafa;
        height: 65px;
        user-select: none;
    }

    .cb-c {
        display: flex;
        align-items: center;
        margin-left: 16px;
        cursor: pointer;
        text-align: left;
    }

    .cb-lb {
        display: flex;
        align-items: center;
    }


    .cb-lb input {
        z-index: 9999;
        margin: 0;
        cursor: pointer;
        width: 24px;
        height: 24px;
    }

    .cb-lb-t {
        display: flex;
        flex-flow: row-reverse nowrap;
        place-content: center flex-end;
        align-items: center;
        margin-left: 8px;
        font-size: 12px;
    }

    #branding {
        display: inline-flex;
        flex-direction: column;
        margin: 0 16px 0 0;
        text-align: right;

        #logo {
            margin-bottom: 1px;
            height: 25px;
        }

        .logo-text {
            fill: #000;
        }

        #terms {
            display: inline-flex;
            justify-content: flex-end;
            line-height: 10px;
            color: #232323;
            font-size: 9px;
            font-style: normal;
        }

        #terms a {
            color: #232323;
            text-decoration: none;
        }

        #terms a:hover {
            color: #232323;
        }
    }
}

.footer {
    margin: 0 auto;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    width: 100%;
    max-width: 60rem;
    line-height: 1.125rem;
    font-size: .75rem;
    text-align: center;
}


.footer-inner {
    border-top: 1px solid #d9d9d9;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.modal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    padding-top: 60px;
    z-index: 100000;


    .modal-content {
        margin: 10% auto;
        width: 80%;
        max-width: 512px;
        text-align: center;
    }


    /* === new === */
    .container_modal {
        background-color: #FFFFFF;
        width: 100%;
        max-width: 600px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        text-align: center;
        overflow: hidden;
    }

    .header_modal {
        padding: 32px 24px 16px;
        border-bottom: 1px solid #E6E8EB;
    }

    .header_modal img {
        width: 256px;
        margin-bottom: 16px;
    }

    .header_modal h2 {
        font-size: 24px;
        font-weight: 600;
        margin: 0;
        color: #1F2A44;
    }

    .timestamp {
        font-size: 12px;
        color: #6B7280;
        margin-top: 8px;
    }

    .instructions_modal {
        text-align: left;
        padding: 24px 32px;
        font-size: 14px;
        color: #1F2A44;
        line-height: 1.5;
    }

    .instructions_modal ol {
        margin: 0;
        padding-left: 20px;
    }

    .instructions_modal ol li {
        margin-bottom: 12px;
    }

    .code-block {
        background-color: #F7F8FA;
        border: 1px solid #E6E8EB;
        border-radius: 4px;
        padding: 12px 16px;
        font-family: 'Courier New', monospace;
        font-size: 13px;
        margin-top: 8px;
        position: relative;
        cursor: pointer;
        user-select: none;
        transition: background-color 0.2s;
    }

    .code-block:hover {
        background-color: #E6E8EB;
    }

    .code-block::after {
        content: "Copy";
        position: absolute;
        top: 50%;
        right: 16px;
        transform: translateY(-50%);
        font-size: 12px;
        color: #F5A623;
        opacity: 0;
        transition: opacity 0.2s;
    }

    .code-block:hover::after {
        opacity: 1;
    }

    .code-block.clicked::after {
        content: "Copied";
        color: #059669;
    }

    .verify-button_modal {
        background-color: #F5A623;
        color: #FFFFFF;
        border: none;
        padding: 12px 32px;
        font-size: 16px;
        font-weight: 500;
        border-radius: 4px;
        margin: 24px 0 32px;
        cursor: pointer;
        transition: background-color 0.2s;
    }

    .verify-button_modal:hover {
        background-color: #E68A00;
    }

    .footer_modal {
        font-size: 12px;
        color: #6B7280;
        background-color: #F7F8FA;
        padding: 16px 24px;
        border-top: 1px solid #E6E8EB;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer_modal a {
        color: #F5A623;
        text-decoration: none;
        margin-left: 8px;
    }

    .footer_modal a:hover {
        text-decoration: underline;
    }

    .zone-name-title-modal-p {
        font-size: 16px;
    }
}
