/* 基础样式 */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #333; /* 深灰色背景 */
}

/* 容器样式 */
.container {
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* 标题样式 */
#title {
    font-family: 'ZQKfreefont', sans-serif;
    font-size: 2em; /* 可以根据需要调整大小 */
    color: #333;
    margin-bottom: 20px;
}

/* 人机验证框样式 */
#captcha {
    width: 100%;
    max-width: 400px; /* 你可以根据需要调整这个宽度 */
    margin-top: 20px;
}

/* 自定义字体定义 */
@font-face {
    font-family: 'ZQKfreefont';
    src: url('zt/ZQKfreefont.ttf') format('truetype');
}

/* 为 hCaptcha 容器添加一些样式 */
.h-captcha {
    margin-top: 20px;
}