@charset "utf-8";
/* CSS Document */
/*CSS Klassen für die Loginseiten...Bewusste Trennung von index.css, zwecks Übersichtlichkeit und Überschreibungen */
#container{
  min-width: 1110px;
  background-color : #FFFFFF;
  border : 1px solid #3A3A3A;
}

#header {
	height : 50px;
 	border-bottom : 1px solid #3A3A3A;
	padding : 4px 0 0 4px;
}

body {
  font : normal 13px "Lucida Sans Unicode",sans-serif;
  background-color : #9AA1A7;
}

div.logincontainer{
	height:480px;
	width:100%
}

div.panelLogin{
	margin-top:50px;
	margin-right:38%;
	margin-left:38%;
	padding:30px;
	background-color:grey;
	color:white;
	border-radius:10px;
	box-shadow: 5px 10px #aaaaaa;
}

div.panelNewAccount{
	height:310px;
	margin-top:50px;
	margin-left: 18%;
	margin-right:18%;
	padding:30px;
	background-color:grey;
	color:white;
	border-radius:10px;
	box-shadow: 5px 10px #aaaaaa;
}

div.leftFormular{
	float:left;
	width:50%;
	margin-right:5%;
}
div.rightFormular{
	float:left;
	width:45%;
}

div.element{
	margin-top:5px;
}

div.centerelement{
	margin-top:5px;
	text-align: center;
}

button {
    height: 40px;
	width:100%;
	font-size:14px;
	border: 1px solid #B47632;
	margin-top:20px;
	border-radius:10px;
	cursor: pointer;
}

a{
	color:white;
}

input{
	width:100%;
	border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

select{
	width:101%;
	border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.tooltip {
    position: relative;
    display: inline-block;
}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    width: 160px;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 5px;
    border-radius: 6px;

    /* Position the tooltip text */
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;

    /* Fade in tooltip */
    opacity: 0;
    transition: opacity 0.3s;
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

footer{
	min-width: 1110px;
	background-color : #FFFFFF;
	border : 1px solid #3A3A3A;
	padding: 10px;
	text-align: center;
}
footer a {
	color: black;
}

#angemeldet_bleiben{
	width:10%;
	border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
