body {
	padding: 0;
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	color: white;
}

.background {
	background: url("../images/background-img.jpg") rgba(0, 0, 0, 0.61);
	background-size: cover;
	background-blend-mode: darken;
	position: absolute;
	left: 0;
	right: 0;
	z-index: -1;
	min-height: 800px;
}

.signupfrm {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: 50%;
	margin: 10vh auto;
	background: transparent;
	box-shadow: 0 0 15px rgb(255, 255, 255);
	border-radius: 25px;
}

.loginfrm {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: 30%;
	margin: 10vh auto;
	background: transparent;
	box-shadow: 0 0 15px rgb(255, 255, 255);
	border-radius: 25px;
}

.listdata {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: 40%;
	margin: 10vh auto;
	background: transparent;
	box-shadow: 0 0 15px rgb(255, 255, 255);
	border-radius: 25px;
}

h2 {
	font-size: 30px;
}

form {
	padding: 10px;
	display: flex;
	flex-direction: column;
	width: 85%;
}

.form-item {
	display: flex;
	width: 90%;
	background: transparent;
	margin: 10px auto;
	border-radius: 15px;
	align-items: center;
	border-bottom: 1px solid rgb(82, 81, 81);
}

.form-item:hover {
	border: 1px solid rgb(82, 81, 81);
}

input {
	background: transparent;
	width: 80%;
	height: 30px;
	outline: none;
	border: none;
	margin: auto;
	color: white;
	font-size: 17px;
}



.btnLogin{
	width: 180px;
	font-size: 20px;
	margin: 10px auto;
	padding: 8px;
	background: rgba(122, 123, 116, 0.72);
	border: none;
	color: white;
}

.btnLogin:hover {
	background: rgba(222, 236, 34, 0.678);
}

.btnSearch {
	width: 180px;
	font-size: 20px;
	margin: 10px auto;
	padding: 8px;
	background: rgba(122, 123, 116, 0.72);
	border: none;
	color: white;
}

.btnSearch:hover {
	background: rgba(222, 236, 34, 0.678);
}

p:first-of-type {
	margin: 0;
}

.options {
	display: flex;
	margin: 10px auto;
	justify-content: center;
	flex-wrap: wrap;
}



p {
	font-size: 18px;
	margin: 5px;
}

#filter_start_date {
	margin-top: 5px;
	border: solid 1px white;
	width: 25%;
}

#filter_end_date {
	margin-top: 5px;
	border: solid 1px white;
	width: 25%;
}

.dataTables_filter, .dataTables_info {
	display: none;
}

@media screen and (max-width: 550px) {
	.loginfrm {
		width: 90%;
	}
}