*, *::before, *::after {
	box-sizing: border-box;
}

html {
	height: 100%;
}

body{
	height:100%;
	width: 100%;
	margin: 0;
	padding: 0;
	background: #35153e;
	background: linear-gradient(180deg, #35153e 0%, #56246a 55%, #763189 100%);
	color: #fff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	z-index: 0;
}

.grad{
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	width: auto;
	height: auto;
	background: radial-gradient(ellipse at 50% 35%, rgba(255,255,255,0.08) 0%, rgba(0,0,0,0) 55%);
	z-index: 1;
}

.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;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: calc(100% - 40px);
	max-width: 380px;
}

.admin {
	float:right;
	margin: 5px;
}

.logo {
	width: 220px;
	margin-bottom: 4px;
}

.header {
	margin: 0;
	width: 100%;
}

.header div{
	color: #ffca8a;
	font-size: 12px;
	min-height: 18px;
	margin: 6px 0 14px;
}

.login {
	width: 100%;
	padding: 28px 32px 30px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3);
	color: #333;
}

.sso {
	width: 100%;
	text-align: center;
	margin: 16px 0 0;
	padding-top: 14px;
	border-top: 1px solid #eee;
}
.sso a:link, .sso a:active, .sso a:visited {
	color: #763189;
	text-decoration: none;
	font-weight: bold;
}
.sso a:hover {
	color: #56246a;
	text-decoration: underline;
}


.login input[type=text],
.login input[type=password]{
	width: 100%;
	height: 40px;
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 8px;
	color: #333;
	font-size: 15px;
	font-weight: 400;
	padding: 8px 12px;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.login input[type=password]{
	margin-top: 12px;
}

.login input[type=submit]{
	width: 100%;
	height: 42px;
	background: #763189;
	border: none;
	cursor: pointer;
	border-radius: 8px;
	color: #fff;
	font-size: 15px;
	font-weight: bold;
	padding: 6px;
	margin-top: 16px;
	transition: background 0.15s ease;
}

.login input[type=submit]:hover{
	background: #56246a;
}

.login input[type=submit]:active{
	background: #35153e;
}

.login input[type=text]:focus,
.login input[type=password]:focus{
	outline: none;
	border: 1px solid #763189;
	box-shadow: 0 0 0 3px rgba(118, 49, 137, 0.15);
}

.login input[type=button]:focus{
	outline: none;
}

.login ::-webkit-input-placeholder{
   color: #999;
}

.login ::placeholder{
   color: #999;
}
