* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',
		Roboto, sans-serif;
	background: #f1f1f1;
	min-height: 100vh;
}

header {
	background: #374d63;
	position: fixed;
	width: 100%;
	padding: 6px 20px;
	top: 0;
	z-index: 1000;
}

header>a>img {
	max-width: 134px;
}

footer{
    position: fixed;
    bottom: 0;
    z-index: 1000;
    text-align: center;
    width: 100%;
    background: #2c3b50;
    padding: 6px;
}

footer>*{
	color: white;
	font-weight: 500;
}

footer>span:first-child{
	font-weight: lighter;
	color: #cdcccc;
}

.pageerrorheading {
	justify-content: center;
	display: flex;
	margin-top: 227px;
}

.container {
	margin-top: 100px;
}

/* Login btn */
.fancylogin {
	align-items: center;
	background-color: initial;
	background-image: linear-gradient(rgb(162 223 133/ 84%),
		rgb(123 197 55/ 84%) 50%);
	border-radius: 42px;
	border-width: 0;
	box-shadow: rgb(238 243 0/ 24%) 0 2px 2px, rgb(233 247 14/ 40%) 0 8px
		12px;
	color: #FFFFFF;
	cursor: pointer;
	display: flex;
	font-size: 19px;
	justify-content: center;
	letter-spacing: .04em;
	line-height: 16px;
	margin-right: 10%;
	padding: 12px 52px;
	text-align: center;
	text-decoration: none;
	text-shadow: rgba(255, 255, 255, 0.4) 0 0 4px, rgba(255, 255, 255, 0.2)
		0 0 12px, rgba(57, 31, 91, 0.6) 1px 1px 4px, rgba(57, 31, 91, 0.32)
		4px 4px 16px;
	user-select: none;
	-webkit-user-select: none;
	touch-action: manipulation;
	vertical-align: baseline;
	float: right;
}

.fancylogin:hover {
	background-image: linear-gradient(rgb(125 169 104/ 84%),
		rgb(96 157 40/ 84%) 50%);
}

@media ( min-width : 768px) {
	.fancylogin {
		font-size: 19px;
		padding: 12px 52px;
	}
}

/* upload section*/
.file-upload {
	background-color: #ffffff;
	width: 600px;
	margin: 0 auto;
	padding: 20px;
}

.file-upload-btn {
	width: 100%;
	margin-top: 20px;
	color: #fff;
	background: #2c3e50;
	border: none;
	padding: 10px;
	border-radius: 4px;
	border-bottom: 4px solid #8ca6bf;
	transition: all .2s ease;
	outline: none;
	text-transform: uppercase;
	font-weight: 700;
}

.file-upload-btn:hover {
	background: #2c3e50;
	color: #ffffff;
	transition: all .2s ease;
	cursor: pointer;
}

.file-upload-btn:active {
	border: 0;
	transition: all .2s ease;
}

.file-upload-content {
	display: none;
	text-align: center;
}

.file-upload-input {
	position: absolute;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	outline: none;
	opacity: 0;
	cursor: pointer;
}

.image-upload-wrap {
	border: 4px dashed #2c3e50;
	position: relative;
}

.image-dropping, .image-upload-wrap:hover {
	background-color: #8ca6bf;
	border: 4px dashed #2c3e50;
}

.image-title-wrap {
	padding: 0 15px 15px 15px;
	color: #222;
}

.drag-text {
	text-align: center;
}

.drag-text h3 {
	font-weight: 100;
	text-transform: uppercase;
	color: #2c3e50;
	padding: 60px 0;
}

.exporttocon {
	text-align: center;
	font-weight: 500;
}

.filetypeerror {
	margin-top: 7px;
	text-align: center;
	color: red;
	display: none;
}

.dropbtn {
	background-color: transparent;
	color: white;
	padding: 9px;
	font-size: 14px;
	border: none;
	font-weight: bold;
}

.dropdown {
	position: relative;
	display: inline-block;
	float: right;
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: #f1f1f1;
	min-width: fit-content;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	z-index: 1;
	left: 0;
	right: 0;
}

.dropdown-content input, .dropdown-content a {
	color: black;
	padding: 10px 20px;
	text-decoration: none;
	display: block;
	width: 100%;
	background-color: transparent;
	border: none;
	text-align: left;
	font-size: 16px;
	font-family: inherit;
}

.dropdown-content input:hover, .dropdown-content a:hover {
	background-color: #ddd;
}

.dropdown:hover .dropdown-content {
	display: block;
}

.dropdown:hover .dropbtn {
	background-color: transparent;
}

.downloadbtnDiv, .downfilename, .adminContainer {
	display: flex;
	justify-content: center;
	margin-top: 30px;
}

.downfilename {
	margin-top: 280px;
}

.adminContainer {
	margin-top: 80px;
}

.downfilename>p {
	max-width: 563px;
	text-overflow: ellipsis;
	overflow: hidden;
	text-align: center;
	line-height: 4;
	font-weight: bold;
	font-size: 20px;
}

.downfilename>i {
	color: #8282e7;
    font-size: 80px;
    margin: 0px 20px;
}

.downloadbtn {
	text-decoration: none;
	background-color: #5b5be1;
	color: white;
	padding: 10px 10px;
	font-size: 24px;
	width: 450px;
	text-align: center;
}

table, th, td {
	border: 1px solid black;
	padding: 4px 3px;
	border-spacing: 0 15px;
}

td>button {
	background-color: royalblue;
	padding: 6px;
	color: white;
	border: 0.5px solid;
	font-weight: bold;
}

.privacycontainer{
	margin: 74px 0px 0px 66px;
}