:root {
	--body-padding: 0rem;
	--body-margin: 0rem;
	--body-background-color: rgba(108, 147, 178, 0.10);
	--base-font-family: "Open Sans", sans-serif;
	--base-font-size: 14px;
	--base-font-weight: 400;
	--base-font-color: #2c3e50;
	--base-line-height: 150%;
	--page-width: 1000px;
	--page-padding: 2rem;
	--navigation-background-color: #fffffe;
	--navigation-height: 5rem;
	--content-width: 100%;
	--content-background-color: #fffffe;
	--content-padding: 2rem;
	--content-border: 1px solid #e0e1dd;
}

* {
	box-sizing: border-box;
}

body {
	margin: var(--body-margin);
	padding: var(--body-padding);
	font-family: var(--base-font-family);
	font-size: var(--base-font-size);
	color: var(--base-font-color);
	font-weight: var(--base-font-weight);
	background-color: var(--body-background-color);
	line-height: var(--base-line-height);
}

main {
	width: 100%;
	max-width: 500px;
	margin: 1rem auto;
	background-color: #fffffe;
	padding: 1rem;
}

h2 {
	margin: 0 0 1rem 0;
}

form {
	font-size: inherit;
}

label {
	font-size: inherit;
}
input {
	font-size: inherit;
}

table {
	width: 100%;
	font-size: inherit;
}

table th {
	text-align: left;
	font-weight: bold;
}

table tr {
	height: 2rem;
}

form#login-form {
  display: flex;
  flex-direction: column;
  height: 100px;
  justify-content: space-between;
}
form#stop-timelog-form {
	display: grid;
	grid-template-columns: auto 5rem;
	margin-bottom: 1rem;
	height: 3rem;
	grid-gap: 2rem;
}
form#stop-timelog-form h3{
	border-bottom: 1px dashed #F6AE2D;
	height: 3rem;
	margin: 0;
	display: flex;
	align-items: center;
	font-size: 1.7rem;
	font-weight: lighter;
}
form#stop-timelog-form button {
	border: 0;
	background-color: #F6AE2D;
	box-shadow: 0 .125rem .375rem rgba(0,0,0,.1);
	border-radius: 0.6rem;
	font-size: inherit;
	font-weight: bold;
	color: white;
	height: 3rem;
	width: 5rem;
	cursor: pointer;
}

form#new-timelog-form {
	display: grid;
	margin-bottom: 1rem;
	height: 3rem;
}
form#new-timelog-form button {
	border: 0;
	background-color: #708D81;
	box-shadow: 0 .125rem .375rem rgba(0,0,0,.1);
	border-radius: 0.6rem;
	font-size: inherit;
	font-weight: bold;
	color: white;
	height: 3rem;
	width: 5rem;
	cursor: pointer;
}