/* Reset body styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.loading-container {
    text-align: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #ccc;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

p {
    font-size: 16px;
    color: #555;
}

.hint-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    align-items: center;
}

/* .hint-container .pointer {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 15px solid #f00;
    margin-left: 8px;
} */
.hint-container .pointer {
    font-size: 24px;
    margin-left: 8px;
}

.hint-container .hint-text {
    color: #333;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 8px 12px;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 768px) {
    .hint-container {
        display: flex;
    }
}

.captcha-container {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: none;
}
.captcha-box {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
    background: #fff;
    margin: 15px auto;
    width: 300px;
}
.checkbox {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
.captcha-text {
    flex-grow: 1;
}
.captcha-logo {
    width: 30px;
    height: 30px;
}
.captcha-footer {
    font-size: 10px;
    color: gray;
}
.btn {
    background-color: #4a90e2;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}
.error-message {
    color: red;
    font-size: 14px;
    margin-top: 10px;
    display: none;
}