body
{
	background-color:#eee;
	margin:0;
	padding:0;
	font-family:'Open Sans';
	background-image:url('/identity/identybg.jpg');
	background-size:cover;
	background-position:center;
	margin-bottom:40px;
}
header
{
	background-color:#660303;
	color:white;
	height:64px;
	line-height:64px;
	padding:0 8px;
	font-weight:600;
	font-size:24px;
	box-shadow:0 0 3px 0 rgba(0,0,0,.3);
	text-shadow:0 0 3px rgba(0,0,0,.5);
}
header .fa-regular
{
	vertical-align:text-bottom;
	padding-right:10px;
	padding-left:5px;
}
header small
{
	vertical-align:bottom;
	font-size:10px;
	opacity:.5;
	display:inline-block;
	margin-left:5px;
	line-height:42px;
	font-weight:300;
}
body.embed {
	background-color:transparent;
}
.embed #login {
	margin:0;
	width:100vw;
	box-sizing:border-box;
}
.embed h2 {
	text-align:left;
}
.embed small {
	text-align:center;
	padding-top:10px;
	display:block;
	color:#999;
}
#login
{
	background-color:white;
	margin:70px auto 0 auto;
	padding:10px;
	width:450px;
	border-style:solid;
	border-color: #9c27b0 #bbb #bbb #bbb;
    border-width: 6px 1px 1px 1px;
    border-radius: 5px;
}
h2
{
	text-align:center;
	font-weight:600;
	font-size:22px;
	color:#333;
	margin:0 0 10px 0;
	padding:0;
}
p
{
	color:#333;
	font-size:14px;
}
p.caption {
	text-align:center;
	color:#666;
	font-size:15px;
}
p.caption b {
	color:#000;
}
label {
	display:block;
	font-size:13px;
	padding-top:20px;
	font-weight:bold;
}
footer {
	display:block;
	position:fixed;
	bottom:0;
	left:0;
	right:0;
	text-align:center;
	color:#666;
	border-style:solid;
	border-width:1px 0 0 0;
	border-color:#666;
	line-height:28px;
	font-size:13px;
	background-color:#fff;
}
body.embed {
    background-image:none;
}
input[type='text'], input[type='password'] {
	display:block;
	width:100%;
	padding: 0;
	line-height:32px;
	font-size:15px;
}
.center {
	margin-top:16px;
	text-align:center;
}
.center img {
	border-radius:3px;
	box-shadow: 0 0 3px 0 rgba(0,0,0,.5);
}
input[type='text'], input[type='password'] {
	background-color:#f5f5f5;
	border-style:solid;
	border-width:2px;
	border-color:transparent transparent #999 transparent;
	border-radius:3px;
	font-family: 'Open Sans';
	color:#9c27b0;
}
input[type='text']:focus, input[type='password']:focus {
	border-bottom-color:#9c27b0;
	outline: none;
	background-color:#f2f2f2;
}
a {
	color:#9c27b0;
}
button.main {
	line-height:32px;
	border-radius:32px;
	padding:0 30px 0 36px;
	font-size:16px;
	font-weight:bold;
	background-color:#9c27b0;
	color:white;
	border:none;
	cursor:pointer;
	position:relative;
	transition:.2s;
}
button i.fa-light {
	position:absolute;
	left:10px;
	top:0px;
	line-height:32px;
	font-size:15px;
}
button.main:hover {
	background-color:#832393;
}
#sidebar
{
	width:250px;
	float:left;
	height:calc(100vh - 64px);
	background-color:#fff;
	border-style:solid;
	border-color:#ddd;
	border-width:0 1px 0 0;
	color:#333;
}
#sidebar a
{
	padding:2px 10px;
	margin:8px 10px 8px 0;
	line-height:32px;
	color:#333;
	text-decoration:none;
	font-size:14px;
	display:block;
	transition:.2s;
	border-radius: 0 32px 32px 0;
}
#sidebar a:hover
{
	background-color:rgba(0,0,0,.05);
}
#sidebar a.active
{
	background-color:rgba(0,0,0,.05);
	color:#009688;
}
#sidebar a i
{
	margin-right:10px;
    --fa-secondary-opacity: 1.0;
    --fa-primary-color: #006157;
    --fa-secondary-color: #3ebdae;
}

/* Loader */
.loader {
  width: 100%;
  height: 4.8px;
  display: inline-block;
  position: relative;
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
  background-color:white;
}
.loader::after {
  content: '';
  width: 33%;
  height: 4.8px;
  background: #9c27b0;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  animation: animloader 1.5s linear infinite;
}

@keyframes animloader {
  0% {
    left: 0;
    transform: translateX(-100%);
  }
  100% {
    left: 100%;
    transform: translateX(0%);
  }
}

#loader-outer {
	position:fixed;
	top:-10px;
	left:0;
	right:0;
}