/* 登录页面整体容器样式 */
.login-container {
    width: 300px;
    max-width: 300px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    background-color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* QQ logo样式 */
.logo1 {
    text-align: center;
    margin-bottom: 20px;
}

.logo1 img {
    width: 80px;
    height: auto;
}

/* 输入框组样式 */
.input-group input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 3px;
	transform: translate(-3%);
}

/* 按钮组样式 */
.btn-group button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 3px;
    background-color: #00aaff;
    color: white;
    cursor: pointer;
}

.btn-group button:hover {
    background-color: #0088cc;
}

/* 底部按钮区域样式 */
.footer-btns {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.footer-btns button {
    width: 48%; /* 两个按钮平分宽度，预留一点间隙 */
    padding: 10px;
    border: none;
    border-radius: 3px;
    background-color: #00aaff;
    color: white;
    cursor: pointer;
}

.footer-btns button:hover {
    background-color: #0088cc;
}

/* 输入框组样式 */
.input-group input,
#server-select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

/* 注册页面整体容器样式 */
.register-container {
    width: 300px;
    max-width: 300px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    background-color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}