body{
	font-family: sans-serif;
	background: #fffffff;
}
 
h1{
	text-align: center;
	/*ketebalan font*/
	font-weight: 200;
}
 
.tulisan_login{
	text-align: center;
	/*membuat semua huruf menjadi kapital*/
	text-transform: uppercase;
}
 
.kotak_login{
	width: 350px;
	background: white;
	/*meletakkan form ke tengah*/
	margin: 80px auto;
	padding: 10px 10px;
}
 
label{
	font-size: 11pt;
}
 
.form_login{
	/*membuat lebar form penuh*/
	box-sizing : border-box;
	width: 100%;
	padding: 10px;
	font-size: 11pt;
	margin-bottom: 20px;
	
}
 
.tombol_login{
	background:#87CEEB;
	color: white;
	font-size: 11pt;
	width: 30%;
	border: none;
	border-radius: 3px;
	padding: 5px 5px;
	cursor : pointer;
}
 
.link{
	color: #232323;
	text-decoration: none;
	font-size: 10pt;
}