@charset "utf-8";
/* CSS Document */

@font-face {
	font-family: 'Open Sans Condensed';
	src: url('../font/osc.woff');
}
* {
	margin: 0;
	padding: 0;
	font-family: 'Open Sans Condensed', sans-serif;
}
html, body {
	height: 99%;
}
body {
	background-color: #E4E4E4;
}
#wrapper {
	position: relative;
	width: 960px;
	height: calc(100% - 10px);
	min-height: 780px;
	margin: 10px auto;
	background: #fff;
	border: 1px solid #aaa;
	box-shadow: 0 0 10px 0 rgba(0,0,0,.5);
}
#headline {
	position: relative;
	margin: auto;
	height: 60px;
	line-height: 60px;
	text-align: center;
	color: #fff;
	font-size: 2.4rem;
	background-color: #861012;
}
#headline>a>span {
	box-sizing: border-box;
	position: absolute;
	left: 58px;
	top: 10px;
	display: block;
	width: 40px;
	height: 40px;
	border: 1px solid #fff;
	border-radius: 20px;
	background-image: url(../img/logo.svg);
	background-size: 30px;
	background-repeat: no-repeat;
	background-position: center;
	transition: transform 1s;
}
#headline>a>span:hover{
	transform:rotate(360deg);
}
#info {
	margin-top: 30px;
	text-align: center;
	color: #676767;
	font-size: 1.2rem;
}
#formular {
	width: 800px;
	margin: auto;
	border: 2px #861012 solid;
	border-radius: 10px;
	margin-top: 20px;
	padding: 20px;
}
label, input, button {
	display: block;
}
label {
	font-size: 1.2rem;
	color: #861012;
}
#saltLabel {
	margin-top: 10px;
}
.inputs {
	box-sizing: border-box;
	width: 100%;
	height: 34px;
	padding: 0 5px 0 5px;
	border: 1px solid #676767;
	border-radius: 5px;
	color: #676767;
	font-size: 1.2rem;
}
button {
	box-sizing: border-box;
	width: 100px;
	height: 34px;
	border: 2px solid #861012;
	border-radius: 5px;
	color: #861012;
	background-color: #fff;
	font-size: 1.2rem;
	transition: .2s transform;
}
button:hover {
	transform-origin: 50% 50% 50%;
	transform: scale(1.03);
	border-color: #676767;
	color: #676767;
}
#formular>div{
	position: relative;
	width:220px;
	height: 34px;
	margin: 20px auto 0 auto;
}
#generateButton{
	position: absolute;
	top:0;
	left: 0;
}
#resetButton{
	position: absolute;
	top:0;
	right: 0;
}
.outputs {
	position: relative;
	width: 844px;
	height: 64px;
	margin: 20px auto 0 auto;
}
.outputs1 {
	margin: 40px auto 0 auto;
}
.outputs>p {
	font-size: 1.2rem;
	color: #861012;
}
.outputs>input {
	position: absolute;
	bottom: 0;
	left: 0;
	box-sizing: border-box;
	width: 79%;
	height: 34px;
	padding: 0 5px 0 5px;
	border: 1px solid #676767;
	border-radius: 5px;
	color: #676767;
	background-color: #FBFBFB;
	font-size: 1.2rem;
	cursor: default;
}
.outputs>button {
	width: 20%;
	margin:0;
	position: absolute;
	bottom: 0;
	right: 0;
}
footer {
	position: absolute;
	bottom: 0;
	width: 100%;
}
footer>p {
	text-align: center;
	padding: 10px;
	background-color: #333;
	color: #aaa;
	font-size: .8rem;
}
#message {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.5);
}
#message>div {
	position: absolute;
	box-sizing: border-box;
	width: 300px;
	height: 200px;
	background-color: #fff;
	top: calc(50% - 100px);
	left: calc(50% - 150px);
	border: 4px #861012 solid;
	border-radius: 10px;
}
#message>div>p {
	text-align: center;
	margin-top: 20px;
	color: #676767;
	font-size: 1.6rem;
}
#message>div>button {
	margin: 60px auto 0 auto;
}