Hi,
This will be a little tricky. First, open wp-content/plugins/cc-coming-soon/public/themes/default/index.php and find the following snippet:
<?php if($this->get_option('newsletter', 'enabled') === 'yes'): ?>
<div class="form-container">
<div id="thank-you"><p><?php if($thank_u_message = $this->get_option('subscribe_strings', 'thank_u_message')): echo $thank_u_message; else: _e('<strong>Thank you!</strong> We will notify you as soon as we launch.', $this->plugin_slug); endif; ?></p></div>
<form action="" id="newsletter" class="clearfix" method="POST">
<p class="icon-email-envelope">
<input type="email" name="email" id="email" placeholder="<?php if($subscribe_field = $this->get_option('subscribe_strings', 'subscribe_field')): echo $subscribe_field; else: _e('Be the first to know', $this->plugin_slug); endif; ?>" required>
</p>
<input type="hidden" name="_ajax_nonce" id="_ajax_nonce" value="<?php echo wp_create_nonce("cc-cs-newsletter-subscribe"); ?>">
<p>
<button type="submit" id="submit"><?php if($subscribe_button = $this->get_option('subscribe_strings', 'subscribe_button')): echo $subscribe_button; else: _e('Submit', $this->plugin_slug); endif; ?></button>
</p>
</form>
</div>
<?php endif; ?>
Cut it and paste it where you wish it to be situated in the code. Then open wp-content/plugins/cc-coming-soon/public/themes/default/css/main.css and find “.header-container” declaration. Change its position from absolute to relative. Finally, edit the css (mainly h1) to adjust the spaces.
Let me know if you need any help.