@charset "utf-8";
html,
body {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
}

div,
input,
button {
	border: none;
	outline: none;
	box-sizing: border-box;
}



.input-wrap {
	width: 80%;
	margin: 0 auto;
	position: relative;
	height: 46px;
	margin-top: 15px;
	margin-bottom: 16px;
	box-sizing: border-box;
	padding: 0 20px;
	border: 1px solid #ddd;
}

 .input-wrap input {
	width: 100%;
	height: 100%;
	font-size: 16px;
	transition: all .1s linear;
}

 .input-wrap input:hover {
	border-color: #999;
}

 .input-wrap input.active {
	border-color: #027bda;
	transition: all .1s linear;
}

 .input-wrap label {
	position: absolute;
	left: 20px;
	top: 15px;
	color: #999;
	transition: all .1s linear;
}

 .input-wrap label.active {
	top: 0;
	font-size: 12px;
	color: #027bda;
	transition: all .1s linear;
}

 .input-wrap button {
	float: right;
	height: 36px;
	padding: 0 20px;
	background-color:#0289f3;
	color: #fff;

}

.input-wrap button:hover {
	background-color: #027bda;
}