/* * * * * * * * * *
* STYLING DEFAULTS
* * * * * * * * * */
* {
	margin: 0px;
	padding: 0px;
}

a {
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Noto Serif', serif;
}

/* forms */
form {
	width: 60%;
	margin: 5px auto;
	padding-bottom: 50px;
}

form,
form select,
form textarea, .input {
	width: 100%;
	display: block;
	padding: 13px 13px;
	font-size: 1em;
	margin: 5px auto 10px;
	border-radius: 3px;
	box-sizing: border-box;
	background: transparent;
	border: 1px solid #3E606F;
}

input[type="checkbox"] {
	height: 20px;
	float: left;
}

form button {
	float: right;
	margin-left: 24%;
}

form input:focus {
	outline: none;
}

label {
	margin-top: 20px;
	float: left;
}

/* tables */
table,
th,
td {
	border-collapse: collapse;
	width: 70%;
	margin: 20px auto;
	text-align: center;
	padding: 8px;
	text-align: left;
	border: 2px solid black;
}

/* buttons */
.btn {
	color: white;
	background: #4E6166;
	text-align: center;
	border: none;
	border-radius: 5px;
	display: block;
	letter-spacing: .1em;
	margin-top: 20px;;
	padding: 13px 20px;
	text-decoration: none;
}

.text-center {
	text-align: center;
}

/* * * * * * * * * *
* HEADER
* * * * * * * * * */
.header {
	padding: 15px 45px;
	font-family: 'Noto Serif', serif;
	color: white;
	background: black;
}

.header .logo {
	width: 50%;
	float: left;
}

.header .logo h1 {
	color: white;
}

.header .user-info {
	width: 10%;
	margin-top: 10px;
	float: right;
}

.header .logout-btn {
	color: red;
	text-decoration: none;
}

.header:after {
	content: "";
	display: block;
	clear: both;
}

/* * * * * * * * * *
* DASHBOARD
* * * * * * * * * */
.container {
	width: 95%;
	margin: 5px auto 50px;
	/* border: 1px solid #BFBCB3; */
	padding: 10px 0px 50px;
}

.container:after {
	content: "";
	display: block;
	clear: both;
}



