@charset "UTF-8";

div.logoCentered{
	background-image: url(../graphics/ik-logo.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: left center;
	height: 100%;
	width: 200px;
	margin-left: -30px;
	margin-left: auto;
	margin-right: auto;
}
div#loginBox{
	height: 350px;
	width: 400px;
	margin-left: calc((100% - 400px) / 2);
	margin-top: calc((100vh - 500px) / 2);
	z-index: 20;
	display: block;
}
div#loginBox h1{
	font-size: 20px;
	color: white;
	text-align: center;
	margin-bottom: 20px;
	font-weight: 100;
}
div#loginBox input[type="text"], div#loginBox input[type="password"]{
	width: 300px;
	margin-left: 50px;
	clear: both;
	height: 30px;
	background-color: rgb(2, 105, 145);
	border-color: rgb(76, 160, 180);
	border-width: 1px;
	border-style: solid;
	margin-bottom: 15px;
	color: rgb(76, 160, 180);
}
div#loginBox input[type="text"]::placeholder, div#loginBox input[type="password"]::placeholder{
	color: rgb(76, 160, 180);
}

p.loginError{
	color: #ff8b8b;
	text-align: center;
	line-height: 20px;
	font-weight: bold;
}
div#loginBox button{
	width: 300px;
	margin-left: 50px;
	clear: both;
	height: 30px;
	background-color: rgb(2, 105, 145);
	border-color: rgb(76, 160, 180);
	border-width: 1px;
	border-style: solid;
	margin-bottom: 15px;
	color: rgb(76, 160, 180);
}