* {
	box-sizing: border-box;
	font-family: Lato, "segoe ui", roboto, oxygen, ubuntu, cantarell, "fira sans", "droid sans", "helvetica neue", Arial, sans-serif;
	font-size: 16px;
}

body {
	background-color: #222222;
}


/* Login */

.login {
	width: 400px;
}

.form {
	background-color: #ffffff;
	box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
	margin: 100px auto;
}

.form h1 {
	text-align: center;
	color: #000000;
	font-size: 24px;
	padding: 20px 0 20px 0;
	border-bottom: 1px solid #dee0e4;
}

.form form {
	justify-content: center;
	padding-top: 20px;
	align-content: center;
	text-align: center;
}

.form_row {
	width: 100%;
	display: flex;
	justify-content: center;
}

.form form label {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	background-color: #ed7405;
	color: #ffffff;
}

.form form input[type="password"],
.form form input[type="text"] {
	width: 310px;
	height: 50px;
	border: 1px solid #33b2ce;
	margin-bottom: 20px;
	padding: 0 15px;
	display: inline-block;
}

.form form input[type="submit"] {
	width: 100%;
	max-width: 400px;
	padding: 15px;
	margin-top: 20px;
	background-color: #ed7405;
	border: 0;
	cursor: pointer;
	font-weight: bold;
	color: #ffffff;
	transition: background-color 0.2s;
	display: inline-block;
}

.form form input[type="submit"]:hover {
	background-color: #d46804;
	transition: background-color 0.2s;
}

.table_form {
	overflow: auto;
}

/* Nav bar */

.navtop {
	background-color: #ffffff;
	height: 60px;
	width: 100%;
	border: 0;
}

.navtop div {
	display: flex;
	margin: 0 auto;
	width: 700px;
	height: 100%;
}

.navtop div h1,
.navtop div a {
	display: inline-flex;
	align-items: center;
}

.navtop div h1 {
	flex: 1;
	font-size: 24px;
	padding: 0;
	margin: 0;
	color: #33b2ce;
	font-weight: bold;
}

.navtop div a {
	padding: 0 20px;
	text-decoration: none;
	color: #444444;
}

.navtop div a i {
	padding: 2px 8px 0 0;
}

.navtop div a:hover {
	color: #000000;
}

.navtop div img {
	position: relative;
	left: -20px;
	height: 28px;
}

/* Home page */

body.loggedin {
	background-color: #222222;
}

.content {
	width: 700px;
	margin: 0 auto;
}

.content h2 {
	margin: 0;
	padding: 25px 0;
	font-size: 22px;
	border-bottom: 1px solid #e0e0e3;
	color: #ffffff;
	font-weight: normal;
}

.content h3 {
	margin: 0;
	padding: 12px 0;
	font-size: 19px;
	/* border-bottom: 1px solid #e0e0e3; */
	color: #33b2ce;
	font-weight: bold;
	/* text-transform:uppercase; */
	/* font-style: ca; */
}

.content>p,
.content>div {
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
	margin: 25px auto;
	padding: 25px;
	background-color: #fff;
}

.content>p table td,
.content>div table td {
	padding: 5px;
	vertical-align: top;
}

.content>p table,
.content>div table {
	vertical-align: top;
}

.content>p table td:first-child,
.content>div table td:first-child {
	font-weight: bold;
	color: #ed7405;
	padding-right: 15px;
}

.content>p a,
.content>div a {
	color: inherit;
	text-decoration: none;
}

.content>div p {
	padding: 20px;
	margin: 0 0 10px 0;
}

/*
.content form input[type="checkbox"],
.content form input[type="submit"],
.content form input[type="text"] {
	min-width: 30px;
	height: 30px;
	margin: 0;
	display: inline;
	top: 0px;
	position: relative;
} */