body{
	background-color: #C4C4C4;
	margin: 0;
}
/* Właściwości diva menu */
#menu{
	background-color: #272727;
	margin-left: auto;
	margin-right: auto;
	width: 500px;
	height: 50px;
}

.option{
	float: left;
	min-width: 50px;
	height: 20px;
	font-size: 21px;
	padding: 15px;
	border-right: 2px dotted #000000;
}

.option:first-child{
	border-left: 2px dotted #000000;
	margin-left: 43px;
}
/* Właściwości tekstu Logowanie na górze menu */
#t_log_in{
	font-size: 25px;
	text-align: center;
	border-bottom: 1px solid #000000;
	padding-top: 10px;
	padding-bottom: 10px;
	background-color: #009BE9;
}
/* Właściwości menu w którym są buttony oraz text inputy */
#central{
	background-color: #E4E4E4;
	width: 500px;
	height: 400px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -250px;
	margin-top: -200px;
}
/* Właściwości inputów text i password */
.text{
	width: 300px;
	height: 30px;
	font-size: 25px;
	display: block;
	margin: auto;
	outline: none;
	background-color: #D1D1D1;
	color: #000000;
	border: 2px solid #919191;
	padding-left: 2px;
	border-radius: 9px;
}
/* Właściwości inputa submit */
#submit{
	font-size: 20px;
	width: 200px;
	height: 50px;
	margin-top: 30px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	color: #FFFFFF;
	background-color: #009BE9;
	border: 2px solid #00AFF5;
	border-radius: 10px;
}
/* Właściwości tekstu inputa text login */
#login{
	text-align: center;
	padding-top: 10px;
	font-size: 20px;
}
/* Właściwości hasła inputa password hasło */
#haslo{
	text-align: center;
	font-size: 20px;
}
/* Wszystkie Hovery */
.option:hover{
	background-color: #000000;
	cursor: pointer;
	color: #FFFFFF;
	transition: all 0.7s;
}
#submit:hover{
	background-color: #00AAFA;
	cursor: default;
	transform: scale(1.091);
	transition: all 1s;
}