JSFiddle - React, Tailwind, and code Playground

HTML

<section id="search">
			<div id="inputbox">
				<form action="" method="post">
                    <div class="other">
                        <div class="hint"><h3>окна</h3> <p> - вид деятельности</p></div>
                        <div class="hint"><h3>установка</h3></div>
                    </div>
					<input type="text">
					<input type="submit" value="Найти">
				</form>
			</div>
		</section>

CSS

/* reset5 © 2011 opensource.736cs.com MIT */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,audio,canvas,details,figcaption,figure,footer,header,hgroup,mark,menu,meter,nav,output,progress,section,summary,time,video{border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;margin:0;padding:0;}body{line-height:1;}article,aside,dialog,figure,footer,header,hgroup,nav,section,blockquote{display:block;}nav ul{list-style:none;}ol{list-style:decimal;}ul{list-style:disc;}ul ul{list-style:circle;}blockquote,q{quotes:none;}blockquote:before,blockquote:after,q:before,q:after{content:none;}ins{text-decoration:underline;}del{text-decoration:line-through;}mark{background:none;}abbr[title],dfn[title]{border-bottom:1px dotted #000;cursor:help;}table{border-collapse:collapse;border-spacing:0;}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0;}input[type=submit],input[type=button],button{margin:0!important;padding:0!important;}input,select,a img{vertical-align:middle;}


#search {
	width: 95%;
	height: 68px;
	background: url('img/search-right-border.png') right no-repeat #00a1d6;
	margin-top: 13px;
	float: left;
    margin-left: 2.5%;
}

#inputbox {
	width: 90%;
	height: 30px;
	background: #fff;
	margin-top: 14px;
	padding: 2px;
	border: 1px solid #0079ff;
	border-radius: 3px;
    margin-left: 5%;
}

#inputbox input[type="text"] {
	height: 30px;
	font-size: 20px;
	padding: 0px;
	float: left;
	border: 0px;
	width: 40%;
}

#inputbox input[type="submit"] {
	width: 8%;
	height: 30px;
	color: #494949;
	font-family: Arial;
	font-size: 14px;
	font-weight: bold;
	background: #edebeb;
	float: right;
	border: 1px solid #a0a0a0;
	border-bottom: 2px solid #a0a0a0;
	border-radius:...