body{
	height:100%;
	width: 100%;
	margin: 0;
	padding: 0;
	background: #2c2b91;
	color: #fff;
	font-family: Verdana;
	font-size: 12px;
	z-index: 0;
}

.grad{
	position: absolute;
	top: -0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	width: auto;
	height: auto;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.65))); /* Chrome,Safari4+ */
	z-index: 1;
	opacity: 0.7;
}

.page-wrapper {
	z-index: 2;
	position:absolute;
	left:0;
	top:0;
	height:100%;
	width:100%;
	display:flex;
	justify-content: center;
	align-items: center;
}

.login-wrapper {
	display:flex;
	gap:1em;
	flex-wrap:wrap;
	justify-content: center;
}

.admin {
	float:right;
	margin: 5px;
}

.logo {
	width: 200px;
	margin-bottom: 10px;
}

.header {
	margin-top:2em;
	
}

.header div{
	float: left;
	color: #ff8000;
	font-size: 10px;
	width: 200px;
}

.sso {
	width: 100%;
  text-align: center;
  margin: 1em;
  margin: 1em 0;
}
.sso a:link, .sso a:active, .sso a:visited {
	color:white;
	text-decoration: none;
}


.login input[type=text]{
	width: 250px;
	height: 30px;
	background: transparent;
	border: 1px solid rgba(255,255,255,0.6);
	border-radius: 2px;
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	padding: 4px;
}

.login input[type=password]{
	width: 250px;
	height: 30px;
	background: transparent;
	border: 1px solid rgba(255,255,255,0.6);
	border-radius: 2px;
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	padding: 4px;
	margin-top: 10px;
}

.login input[type=submit]{
	width: 260px;
	height: 35px;
	background: #fff;
	border: 1px solid #fff;
	cursor: pointer;
	border-radius: 2px;
	color: #a18d6c;
	font-size: 16px;
	font-weight: 400;
	padding: 6px;
	margin-top: 10px;
}

.login input[type=submit]:hover{
	opacity: 0.8;
}

.login input[type=submit]:active{
	opacity: 0.6;
}

.login input[type=text]:focus{
	outline: none;
	border: 1px solid rgba(255,255,255,0.9);
}

.login input[type=password]:focus{
	outline: none;
	border: 1px solid rgba(255,255,255,0.9);
}

.login input[type=button]:focus{
	outline: none;
}

::-webkit-input-placeholder{
   color: rgba(255,255,255,0.6);
}

::-moz-input-placeholder{
   color: rgba(255,255,255,0.6);
}
