body {
	height: 100%;
	width: 100%;

	background-image: linear-gradient(60deg, #45d945, #66b450);
	background-repeat: no-repeat;
	background-attachment: fixed;

	color: darkgreen;

	font-family: monospace;

	cursor: default;
}

* {
	transition-duration: 0.2s;
}

input[type="text"],textarea {
	background-color: #b0f2b0;
	border: 2px solid #007a00;

	color: #007a00;

	outline: none;
	border-radius: 3px;
}

#login {
	display: none;
}
#loginform {
	padding: 10px;
	background-image: linear-gradient(10deg, green, lime);
}
#subpass {
	background-color: lightgreen;
	border: 2px solid darkgreen;

	color: darkgreen;

	outline: none;
}
#submit {
	background-color: lightgreen;
	border: 2px solid darkgreen;

	color: darkgreen;

	cursor: pointer;
}
::placeholder {
	color: darkgreen;
}

.button {
	background-color: #b8ffb8;

	color: #258d25;
	border: 2px solid #258d25;
	border-radius: 3px;

	cursor: pointer;

	margin: 1px;
}
.button:hover {
	background-color: #61ff61;

	font-size: 15px;

	color: #258d25;
	border: 2px solid #258d25;
	border-radius: 3px;

	cursor: pointer;

	margin: 1px;
}

.submit[disabled] {
	background-color: lightgray;

	color: #404040;
	border: 2px solid #707070;
	border-radius: 3px;

	cursor: not-allowed;
}
.submit[disabled]:hover {
	background-color: #cccccc;

	color: #8f8f8f;
	border: 2px solid darkgray;
	border-radius: 3px;

	cursor: not-allowed;
}

.submit {
	background-color: #b8ffb8;

	color: #258d25;
	border: 2px solid #258d25;
	border-radius: 3px;

	cursor: pointer;
}
.submit:hover {
	background-color: #61ff61;

	color: #258d25;
	border: 2px solid #258d25;
	border-radius: 3px;

	cursor: pointer;
}

.close {
	background-color: #ff9999;

	color: #a80000;
	border: 2px solid #a80000;

	border-radius: 3px;

	cursor: pointer;
}
.close:hover {
	background-color: #ff7070;

	color: #a80000;
	border: 2px solid #a80000;

	border-radius: 3px;

	cursor: pointer;
}

.popupcont{
	position: absolute;
	position: fixed;
	top:0;
	left:0;

	width: 100%;
	height: 100%;

	overflow: hidden;

	background-color: rgb(0, 0, 0, 0.5); /* Semi-transparent background */
	backdrop-filter: blur(2px);

	z-index: 100;
}

.popup {
	margin: 25% auto;
	
	background-color: #caff9e;
	border: 3px solid #00a841;
	border-radius: 5px;

	width: 80%;
	padding: 20px;
}

.errbox {
	display: block;

	text-align: left;

	border: 2px solid #2f982f;
	border-radius: 5px;
	background-color: #43e543;

	padding: 10px;
	margin: 15px;
}

a {
	color: green;
}
a:hover {
	color: darkgreen;

	font-size: 15px;
}

h1 {
	font-size: 30px;
	margin-bottom: 5px;
}

.vidtitle {
	background-color: lightgreen;
	margin-top: 0px;
}

.group {
	position: relative;
	display: block;
	padding: 10px;
	padding-top: 0px;

	margin-top: 30px;
	margin-left: -10px;

	background-color: rgba(255, 255, 255,0.3);
	box-shadow: 0px 0px 5px 5px rgba(255, 255, 255,0.3);
}

.group h2 {
	position: relative;
	margin-top: -10px;
	margin-bottom: 10px;
	z-index: 1;
}

.adminpanel {
	color: #d4ff00;
}

.announcements {
	color: #e66700;
}

.recentvids {
	color: #5f9e00;
}

.youtube1 {
	color: #e60000;
}
.youtube2 {
	color: #e0e0e0;
}