/* 注册页面专有样式 */

/* 标题样式 */
.register-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-top: 0;
    margin-bottom: 30px;
    text-align: center;
}

/* 注册表单 */
.register-form {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* 验证码输入框组 */
.verification-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.verification-input {
    flex: 1;
}

.verification-btn {
    width: 140px;
    height: 50px;
    background: #FFFFFF;
    border: 1px solid #D2D2D2;
    border-radius: 6px;
    font-size: 16px;
    color: #0078FE;
    cursor: pointer;
    transition: background-color 0.3s;
    flex-shrink: 0;
}

.verification-btn:hover {
    background-color: #f5f7ff;
}

.verification-btn.disabled {
    background-color: #f0f0f0;
    color: #999;
    cursor: not-allowed;
}

/* 底部登录链接 */
.register-form .register-link {
    text-align: center;
    margin-top: auto;
    margin-bottom: 20px;
    font-size: 18px;
    color: #666;
}

.register-form .register-link a {
    color: #0078FE;
    text-decoration: none;
    margin-left: 5px;
}

.register-form .register-link a:hover {
    text-decoration: underline;
}
.imgverify {
    display: block;
    width: auto;
}
@media screen and (max-width: 720px) {
    .register-form .register-link {
        font-size: 14px;
        margin-top: 15px;
        margin-bottom: 0;
    }
    .register-btn {
        margin-top: 0;
    }
    .logo {
        display: none;
    }
}