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

body {
    background: #f1f2f4;
}

a {
    text-decoration: none;
}

.box {
    margin-top: 30px;
    padding: 20px 30px 25px 30px;
    max-width: 400px;
    border-radius: 3px;
    background: #ffffff24;
    position: fixed;
    box-shadow: 0 0.3px 0.7px rgba(233, 9, 9, 0.126), 0 0.9px 1.7px rgba(0, 0, 0, 0.179), 0 1.8px 3.5px rgba(0, 0, 0, 0.224), 0 3.7px 7.3px rgba(0, 0, 0, 0.277), 0 10px 20px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(3px);
}

.border-box {
    width: 500px;
    height: 210px;
    padding: 20px;
    text-align: center;
    border-radius: 3px;
    background: #ffffffa8;
    position: relative;
    /* 将.border-box设置为相对定位 */
}


.title {
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    color: #f1f2f4;
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 0.5em;

}

.result-title {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin-top: 25px;
    margin-bottom: 20px;
    color: #f1f2f4;
}

.toast-box {
    position: fixed;
    transform: translate(-50%, -50%);
    left: 50%;
    top: -30px;
    border-radius: 3px;
    font-size: 15px;
    line-height: 18px;
    padding: 12px 30px;
    background: rgba(0, 0, 0, .8);
    color: #fff;
    opacity: 0;
    text-align: center;
    min-width: 150px;
    max-width: 300px;
    white-space: nowrap;
    transition: all 0.5s ease;
}

#footer {
    position: absolute;
    text-align: center;
    width: 100%;
    font-size: 16px;
    color: #c0c0c0;
    bottom: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;

}

.form {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #f1f2f4;
    font-weight: 600;
}

.form-control {
    display: block;
    width: 100%;
    padding: 7px 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: inherit;
    border: 1px solid #e6e7e9;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 3px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-control:focus {
    color: inherit;
    border-color: #90b5e2;
    outline: 0;
}

.form-control:disabled {
    background-color: #f1f5f9;
    opacity: 1;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    cursor: pointer;
    user-select: none;
    font-size: 50;
    width: 340px;
    height: 42px;
    color: #f8fafc;
    background-color: #0d0721e7;
    text-align: center;
    border-radius: 3px;
}

.btn:hover {
    color: #f8fafc;
    text-decoration: none;
    background-color: #070412;
    border-color: transparent;
}

.btn-spacer {
    margin-top: 12px;
    /* Adjust the top margin as per your desired spacing */
}

.online-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    cursor: pointer;
    user-select: none;
    font-size: 50;
    width: 340px;
    height: 42px;
    color: #f8fafc;
    background-color: #0d0721e7;
    text-align: center;
    border-radius: 3px;
}

.online-btn:hover {
    color: #f8fafc;
    text-decoration: none;
    background-color: #070412;
    border-color: transparent;
}

#success {
    background-color: #2fb344;
    cursor: default;
}

#wait {
    height: 42px;
    width: 340px;
    text-align: center;
    border-radius: 3px;
    background-color: #F3F3F3;
}

#online-wait {
    height: 42px;
    width: 340px;
    text-align: center;
    border-radius: 3px;
    background-color: #F3F3F3;
}

.hide {
    display: none !important;
}

.online-hide {
    display: none !important;
}

.loading {
    margin: auto;
    width: 90px;
    height: 0px;
}

.loading-dot {
    float: left;
    width: 10px;
    height: 10px;
    margin: 18px 4px;
    background: #ccc;
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 8 3px black;
    animation: loadingFade 1s infinite;
}

.loading-dot:nth-child(1) {
    animation-delay: 0s;
}

.loading-dot:nth-child(2) {
    animation-delay: 0.1s;
}

.loading-dot:nth-child(3) {
    animation-delay: 0.2s;
}

.loading-dot:nth-child(4) {
    animation-delay: 0.3s;
}

.signature {
    text-align: center;
    font-weight: bold;
    color: #fff;
}

@keyframes loadingFade {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        opacity: 0;
    }
}

.geetest_radar_btn {
    border-radius: 3px !important;
}