/* Reset */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Site */

* {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

html,
body {
	width: 100%;
	height: 100%;
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
}

.background {
	background: #1588c4;
	width: 100%;
	height: 100%;
	position: fixed;
}

.background:before {
	content: '';
	background: url(../img/back-left.png) top left no-repeat;
	display: block;
	height: 100%;
	width: 50%;
	position: absolute;
	top: 0;
	left: 0;
}

.background:after {
	content: '';
	background: url(../img/back-right.png) top right no-repeat;
	display: block;
	height: 100%;
	width: 50%;
	position: absolute;
	right: 0;
	top: 0;
}

.container {
	width: 460px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	padding: 50px 0;
}

h1 {
	font-family: 'Gloria Hallelujah', cursive;
	text-align: center;
	font-size: 72px;
	color: #fff;
	margin-bottom: 40px;
}

.login-block {
	width: 100%;
	background: #fff;
	padding: 20px 50px;
	color: #627279;
	margin-bottom: 40px;
	box-shadow: -3px 5px 5px rgba(0, 0, 0, 0.2);
}

h2 {
	font-family: 'Arial', cursive;
	text-align: center;
	color: black;
	font-weight:normal;
	font-size: 35px;
	padding-bottom: 10px;
	margin-bottom: 25px;
}

h3 {
	font-family: 'Arial', cursive;
	text-align: center;
	color: black;
	font-weight:lighter;
	font-size: 25px;
	padding-bottom: 10px;
	margin-bottom: 25px;
}

h4 {
	font-family: 'Arial', cursive;
	text-align: center;
	color: black;
	font-weight:lighter;
	font-size: 25px;

}


.login-block a {
	font-size: 12px;
	text-decoration: underline;
	color: #627279;
}

.login-form-label {
	width: 45%;
	float: left;
	padding: 10px 0;
}

.login-form-input {
	width: 55%;
	float: left;
	border: 1px solid #ccc;
	height: 34px;
	padding: 8px;
	margin-bottom: 17px;
}

.login-form-input:focus {
	outline: none;
	border: 1px solid #1588c4;
}

.login-form .btn {
	width: 100%;
	font-size: 16px;
	margin-bottom: 12px;
}

.btn {
	background: #1588c4;
	border: 1px solid #e2e2e1;
	color: #fff;
	font-weight: 700;
	padding: 7px 15px;
	text-decoration: none;
}

.btn:hover {
	background: #0679b6;
}

.news-block {
	background: #0e6b98;
	width: 100%;
	padding: 15px 20px;
	color: #fff;
}

h3 {
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 10px;
}

.news-block p {
	margin-bottom: 15px;
	font-size: 12px;
	text-align: justify;
	line-height: 1.5;
}

.news-images-wrap {
	margin-bottom: 50px;
	float: left;
	width: 100%;
}

.news-block-img {
	float: left;
	margin-right: 18px;
}

.news-block-img:last-child {
	margin-right: 0;
}

.download {
	text-align: center
}

.google-btn {
	display: inline-block;
	margin-right: 8px;
}

.apple-btn {
	display: inline-block;
	margin-left: 8px;
}

.cookies {
	background: #0d6c99;
	width: 100%;
	position: fixed;
	bottom: 0;
	color: #fff;
	z-index: 2;
	padding: 8px 0;
}

.cookies-container {
	.width: 1140px;
	margin: 0 auto;
	text-align:center;
}

.cookies-container .btn {
	float: right;
	margin-top: 7px;
}

.cookies-container p {
	line-height: 1.5;
}

.cookies-container a {
	color: #fff;
	font-weight: bold;
}

.red {
    color: #F00; /* Rdeča barva */
}

.green {
    color: #006c02; /* Zelena barva */
}

