body {
	background-image: url("../res/bkg_main_lowres.png");
	background-size: cover;
	background-position-x: center;
	background-position-y: center;
	background-color: #392307;
	background-repeat: no-repeat;
}

@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

@font-face {
	font-family: Duality;
	src: url("../res/duality.ttf");
}

* {
	font-family: 'Open Sans', sans-serif;
}

#registration {
	align-items: center;

	width: fit-content;
	margin: auto;
	text-align: center
}

.login label{
    float: left;
    clear: left;
    width: 125px;
    text-align: right;
}
.login input {
  float: left;
}

label, input {
	margin: 5px 2px
}

h1 {
	margin: auto;
	margin-bottom: 10px;
	width: fit-content;
	font-weight: normal;
}
h2 {
	margin: auto;
	width: fit-content;
	font-weight: normal;
}
h1,h2,h3 {
	font-family: Duality;
}

table, th, td {
	border: 1px solid black;
}

#registration button {
	margin: auto;
}

.vertical-center {
	margin: 0;
	position: absolute;
	width: 900px;
	top: 10px;
	left: 50%;
	-ms-transform: translateY(0) translateX(-50%);
	transform: translateY(0) translateX(-50%);
	align-items: center;
	text-align: center;
}

.error-message {
	color:red;
	margin: 5px 2px;
}

.popup {
	background-color: white;
	outline: 2px solid black;
	position: absolute;
	height: 220px;
	top: 120px;
	width: 480px;
	left: 140px;
	margin: auto;
	align-items: center;
	padding: 10px;
}

.popup span {
	color: black;
	margin: auto;
	width: fit-content;
}

table {
	margin: auto;
}

/* Tab css https://www.w3schools.com/howto/howto_js_tabs.asp */
/* Style the tab */
.tab {
	overflow: hidden;
	border: 1px solid #ccc;
	background-color: #f1f1f1;
}

/* Style the buttons inside the tab */
.tab button {
	background-color: inherit;
	float: left;
	border: none;
	outline: none;
	cursor: pointer;
	padding: 14px 16px;
	transition: 0.3s;
	font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
	background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
	background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
	display: none;
	padding: 6px 12px;
	border: 1px solid #ccc;
	border-top: none;
	background-color: #eee;
}
/* End tab css */

.drop_zone {
	border: 2px solid blue;
	/* width:  200px; */
	height: 50px;
}
.drop_zone * {
	margin-top: 15px;
}

.drop_zone_hovered {
	border: 2px dashed blue;
	background-color: cyan;
}

.dashed {
	border-bottom: 1px dashed black;
	display:inline;
}