body{
	font-family: 'Pontano Sans';
	background-color: #172145;
	background-size: cover;
	background-position: bottom;
/*	background-image: url(../img/bee.png);*/
}
html, body{
	height: 100%;
	margin: 0;
}
.center-box{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    padding: 1em;
    border-radius: 5px;
/*    box-shadow: 0em 0.15em 1em 0px rgba(0,0,0,0.15);*/
}
.center-box h2{
	color: #fff;
	margin-bottom: 1em;
    font-weight: 600;
    letter-spacing: 1px;
}
#formbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
}

.input {
	position: relative;
	margin: 1em;
	width: calc(50% - 2em);
	height: 80px;
}

.message {
	width: calc(100% - 2em);
	height: 200px;
}

textarea {
	border: none;
	resize: none;
}

.input__field {
	position: absolute;
	margin: 0.8em 0;
	padding: 0.4em;
	width: 100%;
	height: calc(100% - 1.6em);
	border: none;
	border-radius: 0;
	background: transparent;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	-webkit-appearance: none;
	/* for box shadows to show on iOS */
	    letter-spacing: 1px;
}

.input__field:focus {
	outline: none;
}

.input__label {
	position: absolute;
	padding: 0 1em;
	margin: 1.2em 0;
	width: 100%;
	height: calc(100% - 2.4em);
	color: #fff;
	font-weight: bold;
	font-size: 70.25%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.input__label-content {
	position: relative;
	display: block;
	font-size: 16px;
	line-height: 50px;
	width: 100%;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	letter-spacing: 1px;
}

.input__label::before,
.input__label:after {
	content: '';
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
/*	 background: #1e9fc4 linear-gradient(45deg, #3e6bd0, #1e9fc4 57%, #4fbbdd) repeat scroll 0 0;*/
	background: #fff;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
}

.input__label::before {
	top: 0;
}

.input__label::after {
	bottom: 0;
}

.input__field:focus+.input__label .input__label-content,
.input--filled .input__label-content {
	-webkit-transform: translate3d(0, -90%, 0);
	transform: translate3d(0, -90%, 0);
}

.input__field:focus+.input__label::before,
.input--filled .input__label::before {
	-webkit-transform: translate3d(0, -0.5em, 0);
	transform: translate3d(0, -0.5em, 0);
}

.input__field:focus+.input__label::after,
.input--filled .input__label::after {
	-webkit-transform: translate3d(0, 0.5em, 0);
	transform: translate3d(0, 0.5em, 0);
}

#send-button {
	width: 200px;
	height: 60px;
/*	background: #1e9fc4 linear-gradient(45deg, #3e6bd0, #1e9fc4 57%, #4fbbdd) repeat scroll 0 0;*/
	background: #fff;
	color:#172145;
	font-size: 20px;
	border-radius: 5px;
	border: 0;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 4px;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
}

#send-button:hover,
#send-button:focus {
	outline: 0;
	border: 2px solid #fff;
	background: transparent;
	color: #fff;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
}
/*medai query*/
@media (min-width:320px) and (max-width:990px){
	.center-box{
		width: 90%;
	}
	.input {
		position: relative;
		margin: 0;
		width: 100%;
		height: 70px;
		font-size: 12px;
		margin-bottom: 2em;
	}
	.message {
		width: 100%;
		height: 150px;
		margin: 0;	
		margin-bottom: 2em;
	}
	.center-box h2 {
		font-size: 26px;
	}
	#send-button{
		font-size: 18px;
		width: auto;
    	height: auto;
		padding: 8px 15px;
	}
} 