JSFiddle - React, Tailwind, and code Playground

by charaf11

HTML

<div style='display:table-cell;vertical-align:middle'>
<input name="name" class="form small" title="Username" maxlength="2048" /> 
<input class="button" type="submit" value="Select" />
</div>

CSS

.button {
	-moz-box-shadow: inset 0px -2px 0px 0px #006aeb;
	-webkit-box-shadow: inset 0px -2px 0px 0px #006aeb;
	box-shadow: inset 0px -2px 0px 0px #006aeb;
	background-color: #3d94f6;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	border: 1px solid #337fed;
	color: #FFF;
	font-family: arial;
	font-size: 15px;
	font-weight: bold;
	padding: 9px 23px;
}.button:hover {
	border: 1px solid #1052B4;
}.button:active {
	position:relative;
	top:1px;
}
.form  {
	width: 290px;
	border: 1px solid #D6D6D6;
	background-color: #F9F9F9;
	font-size: 18px;
	color: #767676;
	padding-top: 7px;
	padding-right: 4px;
	padding-bottom: 8px;
	padding-left: 3px;
	border: 1px solid #d5d5d5;
	color: #333;
	border-radius: 4px 4px 4px 4px !important;
	height: 25px;
}
.form.small{
	height: 20px;
}