@import url('https://fonts.googleapis.com/css?family=Lato:300,700&display=swap&subset=latin-ext');

body {
	background: url("https://shopeca.cz/themes/shopeca/images/background.jpg") no-repeat;
	background-position-x: right;
	background-position-y: 0;
	box-sizing: border-box;
	line-height: normal;
	color: black;
	font-size: 16px;
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	margin: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}
header {
	height: 250px;
}

p {
	line-height: 160%;
}

.inner-wrapper {
	width: 750px;
	margin: auto;
	position: relative;
	overflow: hidden;
}

header .inner-wrapper {
	width: 850px;
	height: 100%;
}

.logo {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
}
.logo img {
	height: 70px;
	width: auto;
}

h2 {
	font-size: 50px;
	font-weight: 700;
}

form {
	width: 300px;
	border: 2px solid #676767;
	border-radius: 10px;
	padding: 5px;
	background: white;
}
form input {
	border: none;
	width: 148px;
	line-height: 30px;
	height: 30px;
	box-sizing: border-box;
	padding: 0;
	-webkit-appearance: none;
}
.support .support-button,
form input[type=submit] {
	border-radius: 5px;
	line-height: 40px;
	height: 40px;
	background: rgba(33,168,185,.70);
	transition: all .3s ease;
	color: white;
	cursor: pointer;
	font-size: 16px;
}
form input[type=password] {
	padding: 0 7px;
}
form input[type=submit]:hover {
	background: rgba(33,168,185,.9);
}

.support {
	margin-top: 100px;
}
.support .support-button {
	padding: 10px 40px;
	text-decoration: none;
	background: rgba(0,0,0,.7);
	display: inline-block;
	width: auto;
}
.support .support-button:hover {
	background: rgba(0,0,0,.9);
}

@media only screen and (max-width: 1170px) {
	.inner-wrapper { width: 75%; }
	header .inner-wrapper { width: 90%; }
}

@media only screen and (max-width: 800px) {
	.inner-wrapper { width: 90%; text-align: center; }
	header .inner-wrapper { width: 90%; text-align: center; }
	.logo { left: 50%; transform: translate(-50%,-50%); }
	form { margin: auto; }
}
