JSFiddle - React, Tailwind, and code Playground

HTML

<div class="Wrapper">
            <div>
                <img src="http://i.imgur.com/3DfCkQU.png" class="Image" />
            </div>
            <div class="Form">
                <input type="text" />
                <br />
                <input type="text" />
                <br />
                <input type="text" />
                <br />
                <input type="text" />
            </div>
        </div>

CSS

body
        {
            margin: auto;
            width: 100%;
        }
     .Wrapper
    {
        position:relative;
        width: 945px;
        margin:auto;
    }
        
        .Image
        {
            max-width: 1150px;
            max-height: 1453px;
            width: 100%;
        }
        
        .Form
        {
            position: relative;
            top:-260px;
            left: 200px;
            width: 130px;
	        border: solid 1px #000;
        }