body {
	height: 100vh;
	margin: 0;
	background: rgba(0, 0, 255, 1);
	background: #f0f0f0;
	font-family: calibri;
}

a {
	text-decoration: none;
	color: rgba(0, 0, 0, 1);
}

.bg {
	/* The image used */
	background-image: url("../imgs/wallpaper.jpg");
	height: 100%; 
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.back {
	/* The image used */
	background-image: url("../imgs/haha.jpg");
	height: 100%; 
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

#bg {
		/*
	clip-path: polygon(90% 0, 100% 0, 100% 100%, 50% 100%);
	

	

	clip-path: polygon(75% 65%, 100% 70%, 100% 100%, 0 100%, 0 90%);
	
	clip-path: polygon(100% 20%, 100% 60%, 60% 100%, 20% 100%);
	clip-path: polygon(0% 0%, 100% 0%, 100% 20%, 50% 20%, 50% 40%, 100% 40%, 100% 100%, 0% 100%, 0% 80%, 50% 80%, 50% 60%, 0% 60%);
	clip-path: polygon(75% 55%, 100% 55%, 100% 100%, 0 100%, 0 80%);
	clip-path: circle(80% at 21% 3%);

	
	background-image: url("../img/background.jpg");

		
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;

	
	background: #008cdb;
  	*/
	height: 100%;
	width: 100%;
	position: absolute;
	z-index: -1;
}

.page-content {
	width: 80%;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.single-block-container {
	overflow: auto;
	box-shadow: 2px 18px 70px 0px rgba(0,0,0,0.5);	
	background: rgba(100, 100, 100, 0.6);
				
}

.single-block-container-header {
	font-size: 30pt;	
	background: linear-gradient(-30deg, rgba(30, 196, 233, 0.75) 0%, rgba(0, 140, 219, 0.75) 100%);
	padding: 30px;
	text-align: center;	
	color: rgba(230, 230, 230, 1);	
}

.single-block-container-body {
	padding: 0px 40px;
	color: rgba(0, 0, 0, 1);		
}

.username,.password {
	border-bottom: 3px solid #008cdb;
	background: transparent;
	font-size: 20pt;
	padding: 20px;
	margin: 20px;
	color: green;
}

::placeholder {
  color: rgba(230, 230, 230 ,0.4);
}

.section-unconfined {
	width: calc(100%/3);
	height: 200px;
	margin: 10px;
	border-radius: 10px;
	background: rgba(200, 200, 200, 0.5);
	box-shadow: 2px 4px 2px rgba(200, 200, 200, 1);
}

.section-unconfined:hover{
	background: rgba(200, 200, 200, 0.75);
}

.unconfined-header {
	padding: 2%;
	text-align: center;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	font-size: 20pt;
	
}

.unconfined-body {
	padding: 2%;
	text-align: justify;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}

.username,.password {
	border: none;
	border-bottom: 3px solid #008cdb;
	background: rgba(230, 230, 230, 0.2);
	font-size: 20pt;
	padding: 20px;
	margin: 20px;
	color: rgba(0, 0, 0, 1);
}

.index-container {
	height: 90vh;
	display: flex;
/*	flex-direction: row; */
	align-items: center;
	justify-content: center;
}

.index-page-container {
	width: 60%;
	box-shadow: 0 0 5px #050505;
	padding: 20px;
	border-radius: 20px;
}

.index-page-container-header {
	height: 50px;
	width: 100%;
	text-align: center;
	font-size: 20pt;
}

.index-page-container-body {
	height: 50%;
	width: 100%;
}

.login-body {
	padding: 5%;
	display: flex;
	flex-direction: column;
}

.login-button {
	border: 3px solid #008cdb;
	font-size: 20pt;
	padding: 20px;	
	margin: 20px;
	border-radius: 4px;
	background: rgba(230, 230, 230, 0.2);
/*	box-shadow: 1px 2px 5px #1b1b1b; */
}

.login-button:hover {
	background: linear-gradient(-30deg, rgba(30, 196, 233, 0.75) 0%, rgba(0, 140, 219, 0.75) 100%);
	transition: 0.5s;
	color: rgba(230, 230, 230, 1);	
}

.error {
	font-size: 15pt; 
	color: rgba(230, 230, 230, 1);	
}


@media only screen and (max-width: 1000px) {
	.login-container {
		width: 80%;
	}
}



