@charset "utf-8";
/* CSS Document */
*{margin:0; padding:0;}
#title {
    text-align: center;
	font-size:  3em;
	position: absolute;
    left: 50%;
    top: 25%;
	transform: translate(-50%, -50%);
	width: 80%;
	height: 100px;
	
}
#napis {
	padding: 10px;
	font-size: 1.1em;
}

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

#login {
	border: solid 1px #CCC;
	width: 35%;
	max-width: 500px;
	min-width: 250px;
	padding:30px;
	background: #ECECEC;
	display: table;
    text-align: center;
	box-shadow: 3px 3px 1px 0px rgba(170,170,170,0.7);
	border-radius: 5px;
}

input[type="text"],input[type="password"] {
	padding: 15px;
	border: 1px solid #CCC;
	border-radius: 5px;
	margin-bottom: 10px;
	width: 100%;
	color: #000;
	font-size: 20px;
	box-sizing: border-box;
	background-color: #fff;
}

input[type="submit"]{
	font-size:20px;
	position:relative;
	width: 100px;
	border: 1px solid #557;
	background: #38e;
	color: #000;
	color: white;
	width: 100%;
	padding: 12px;
	border-radius:  5px;
	cursor: pointer;
}
input[type="password"]:focus{
	background: #fff;
}

input[type="text"]:focus {
	background: #fff;
}
.loginbutton:focus {
	background: #27C;
}
.loginbutton:hover{
	border: solid #66C 1px;
}