body {
	background-color: #f5f5f5;
	height: 100vh;
	margin: 0;
	font-family: 'Montserrat', sans-serif;
}

.content {
	text-align: center;
	position: relative;
	height: 100vh;
	overflow: none;
}

.vertical-center {
	margin: 0;
	width: 100%;
	position: absolute;
	top: 50%;
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.vertical-center > img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	
	margin-bottom: 15px;
}

.vertical-center > form {
	margin-top: 15px;
	width: 300px;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.vertical-center > form > input {
	width: 220px;
	max-width: 100%;
	margin: 0;
	display: inline-block;
	
	float: left;
	
	
	border: 1px solid #ccc;
	box-shadow: inset 0 1px 3px #ddd;
	border-radius: 4px;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	
	padding-left: 20px;
	padding-right: 20px;
	
	padding-top: 12px;
	padding-bottom: 12px;
}

.vertical-center > form > button, .vertical-center a.button {
	border: none;
	border-radius: 4px;
	display: inline-block;
	padding: 13px 16px;
	
	vertical-align: middle;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	text-align: center;
	cursor: pointer;
	white-space: nowrap;

	background-color: #0c697a;
	color: #ffffff;
	
}

.vertical-enter > form > button {
	float: right;
}
.vertical-center a.button {
	margin-top: 20px;
}

@media only screen and (max-width: 300px) {
	.content {
		margin: 10px;
	}
	.vertical-center > form > input {
		width: 100%;
	}
	.vertical-center > form > button {
		margin-top: 10px;
		width: 100%;
	}
}

@media only screen and (min-width: 301px) {
	.vertical-center > form > input {
		border-top-right-radius: 0;
		border-bottom-right-radius: 0;
		border-right: 0;
	}
	.vertical-center > form > button {
		border-top-left-radius: 0;
		border-bottom-left-radius: 0;
		border-left: 0;
	}
}