
html, body {
	background: black;
	font-family: "Source Sans Pro", sans-serif;
	font-weight: 300;
	width: 100%;
	height: 100%;
}

.button {
	font-family: "Source Sans Pro", sans-serif;
}

.background-container {
	position: fixed;
	background-size: cover;
	color: white;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	opacity: 0;
}

.background-container.is-loaded {
	animation: background-load 0.15s cubic-bezier(.9,.03,.69,.22);
	animation-fill-mode: forwards;
}

.background-details {
	background: rgba(0, 0, 0, 0.6);
	position: fixed;
	bottom: 1rem;
	right: 1rem;
	padding: 0.5rem;
	text-align: right;
}

.background-details .background-desc {
	font-size: 1.5rem;
}

.background-details a {
	color: #cccccc;
	font-weight: 600;
}

@keyframes background-load {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

.main-container {
	background: rgba(0, 0, 0, 0.7);
	color: white;
	max-width: 500px;
	margin-left: 5rem;
	padding: 3rem 2rem;
	height: auto;
	min-height: 100%;
	position: relative;
	z-index: 1;
}

.main-container .site-header {
	font-size: 1.25rem;
	margin-bottom: 0.25rem;
}

.main-container .title, .main-container .subtitle, .main-container .label, strong {
	color: white;
}

.main-container a {
	color: white;
	font-weight: 400;
	border-bottom: dashed 1px white;
}

.main-container .title {
	font-weight: 400;
}

.main-container .subtitle, .main-container .label {
	font-weight: 300;
}

.main-container form .button {
	margin-top: 0.5rem;
}

.main-container .notification.is-danger {
	background-color: #feecf0;
	color: #cc0f35;
}

.main-container section {
	padding: 1rem 0 0 0;
}

.main-container footer {
	font-style: italic;
	font-size: 0.85rem;
	margin-top: 1rem;
}

.button {
	font-weight: 400;
}

.subtitle.normal-bottom-margin {
	margin-bottom: 0.25rem;
}

.logoutForm {
	margin-bottom: 0.75rem;
}

.logoutForm input[type=submit] {
	margin-left: 0.5rem;
	vertical-align: baseline;
}

.appDetails {
	border: solid 1px white;
	border-radius: 4px;
	box-sizing: content-box;
	margin-bottom: 0.5rem;
	min-height: 64px;
	padding: 1rem;
}

.appDetails .appDetailsLogo img {
	float: left;
	margin-right: 0.5rem;
	height: 64px;
}

.appDetails .appDetailsName {
	font-size: 1.4rem;
}

.appDetails .appDetailsSubtext {
	font-style: italic;
}

section.userDetails {
	padding-top: 0.25rem;
}
.userDetails .userName {
	font-size: 1.75rem;
	font-weight: 500;
}
.userDetails .userUsername {
	font-size: 1.3rem;
}
.userDetails .userActions, .userDetails .userRoles {
	padding-top: 0.75rem;
}
.userDetails .userActions .userActionsTitle, .userDetails .userRoles .userRolesTitle {
	font-size: 1rem;
	font-style: italic;
}
.userDetails ul {
	list-style-type: disc;
	padding-left: 1.25rem;
}

@media (max-width: 900px) {
	.main-container {
		margin: 0 auto;
		max-width: 500px;
		width: 100%;
	}

	.background-details {
		position: absolute;
		bottom: 0;
		left: 0;
		text-align: center;
	}
}