/* CSS-Reset
-------------*/

	* {
		box-sizing: border-box;
		font-size: inherit;

	}

	html, body {
		padding: 0;
		margin: 0;
		color: #424242;
		font-size: 17px;
		background-color: #FFFFFF;
		height: 100%;
		font-family: 'Source Sans Pro', 'Arial', sans-serif;
	}

	@keyframes taadaa {
		0% {
			opacity: 0.3;
		}

		100% {
			opacity: 1;
		}
	}

	body {
		position: relative;
	}

	body {
		animation: taadaa 1.3s ease;
	}

	img {
		max-width: 100%;
		height: auto;
	}

	section {
		position: relative;
	}

	small * {
		font-size: inherit;
		color: inherit;
	}

/* Zentrierung
---------------*/

	.center {
		position: absolute;
		top: 40%;
		left: 50%;
		transform: translate(-50%, -50%);
	}

/* Layoutelemente
------------------*/

	.container {
		position: relative;
		width: 1100px;
		margin: 0 auto 0 auto;
	}

	@media screen and (max-width: 1200px) {
		.container {
			width: 100%;
			margin-right: 0;
			margin-left: 0;
			padding: 0 20px 0 20px;
		}
	}

/* Links
--------*/

	a {
		color: #1c9dd7;
		text-decoration: none;
	}

	a:hover {
		color: #1c9dd7;
	}

	a:focus {
		outline: 1px solid #1c9dd7;
		outline: none;
	}

/* Eingabefelder
-----------------*/

	input, select, textarea {
		font-family: inherit;
	}

/* Floatclear
--------------*/

	.clear {
		clear: both;
		line-height: 0;
		height: 0;
		font-size: 0;
	}

	.clearfix:after {
		content: '';
		clear: both;
		display: table;
	}

/* Hauptinhalt
---------------*/

	main {
		position: absolute;
		top: 70px;
		right: 0;
		bottom: 0;
		left: 0;
		overflow-y: auto;
	}

/* Überschrift
---------------*/

	main h1 {
		font-size: 36px;
		margin: 0;
		font-weight: 600;
	}

/* Absätze
-----------*/

	p {
		margin: 15px 0 0 0;
		line-height: 25px;
	}

/* Hintergrundbild
-------------------*/

	body {
		position: relative;
	}

	body:before {
		content: '';
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background-image: url('/core/blockwriter/view/login/pub/img/login-bgr.png');
		background-position: center bottom 30%;
		background-size: 700px auto;
		background-repeat: no-repeat;
		background-color: #fbfbfb;
		opacity: 0.4;
	}

/* Externe URLS
----------------*/

	.extern-url {
		background-image: url('/core/blockwriter/scope/www/pub/img/icon/black/external-url.svg');
		background-size: 12px auto;
		background-repeat: no-repeat;
		padding-left: 16px;
		background-position: left center;
	}