* {
  box-sizing: border-box;
}

body {
	background-image: url("../images/bg/dark.png");
	font-family:Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #ccc;
	display: flex;
	justify-content: center;
	margin: 7px;
}

.textbox:focus ~ .label,
.textbox:not(:focus):valid ~ .label{
  top: -15px;
  bottom: 10px;
  left: 3px;
  font-size: 11px;
  opacity: 1;
  height: 11px;

}

.label {
  position: absolute;
  pointer-events: none;
  left: 7px;
  top: 7px;
  transition: 0.2s ease all;

}

.headline{
	font-size: 24px;
}

.win_login{
	border: 1px solid darkred;
	width: 500px;
	max-height: 300px;
	background: rgba(0,0,0,0.5);
	margin-top: 43px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.win_items{
	position: relative;
	margin: 12px;
}

.center{
	text-align: center;
	height: 50px;
}

.textbox {
  width: 200px;
  color: #ccc;
  height: 30px;
  padding: 5px;
  background: #222;
  border: 1px solid #555;
}

.textbox:hover,
.textbox:active{
  border: 1px solid #888;
}

.button{
	background-color: #222;
	width: 200px;
	height: 30px;
	border: 1px solid #555;
	text-align: center;
	color: #ccc;
}

.button:hover,
.button:active{
	background-color: #282828;
	border: 1px solid #888;
}

.msg_error{
	font-size: 13px;
	color: red;
}

.fadeout {
    animation-name: fadeout;
	animation-duration: 2s;
	animation-delay: 8s;
	animation-fill-mode: both;
}

@keyframes fadeout {
  0% {opacity: 1}
  100% {opacity: 0}
}