*{
  margin: 0px;
  padding: 0px;
}

body{
  background: #272425;
  font-size: 20px;
}

html{
  font-family: sans-serif;
}

.login{
  box-shadow: inset 0px -2px 1px rgba(0,0,0,0.2);
  padding: 25px;
  box-sizing: border-box;
  border-radius: 3px;
  width:800px;
  margin: 30px auto;
  background: white;
}

.login .logo{
  display: block;
  margin: 0px auto;
  margin-bottom: 20px;
  height: 140px;
}

label{
  font-size: 80%;
  color: #444;
  display: block;
}

input{
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 6px;
}

input:focus{
  outline: none;
}

input[type="text"],input[type="password"]{
  border: solid 2px transparent;
  border-bottom: solid 2px #ddd;
}

input[type="text"]:hover,input[type="password"]:hover,input[type="text"]:focus,input[type="password"]:focus{
  border-bottom-color: #978a44;
}

input[type="submit"]{
  background: #978a44;
  border: none;
  color: white;
  padding: 12px;
  border-radius: 3px;
}

nav{
  display: block;
  width: 100%;
  background: white;
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 0 0 3px 3px;
  padding: 10px;
  box-sizing: border-box;
}

nav .content{
  width: 1200px;
  margin: 0px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav .logo img{
  height: 40px;
}

nav ul{
  display: inline-block;
  list-style-type: none;
}

nav ul li{
  display: inline-block;
}

a{
  text-decoration: none;
}

nav a{
  padding-left: 10px;
  padding-right: 10px;
  color: #373a40;
}

nav a:hover{
  color: #978a44;
}

.content:not(nav .content){
  box-shadow: inset 0px -2px 1px rgba(0,0,0,0.2);
  padding: 25px;
  box-sizing: border-box;
  border-radius: 3px;
  width: 1200px;
  margin: 30px auto;
  margin-top: 70px;
  background: white;
}

footer{
  text-align: center;
  font-size: 70%;
  color: white;
  line-height: 30px;
  margin-top: 40px;
}

.content h1{
  font-weight: normal;
  color: #373a40;
  border-bottom: solid 3px #eee;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

table{
  border-collapse: collapse;
  width:100%;
}

table td{
  border:solid 1px #373a40;
  padding: 10px;
}

thead{
  background: #eee;
  font-weight: bold;
}
.toolbox{
  margin-bottom: 20px; 
}

.toolbox a{
  color: #373a40;
  margin-right: 30px;
}

.toolbox a:hover{
  color: #978a44;
}

.error-box{
  border-radius: 10px;
  background: #ffbbbb;
  border: solid 1px #aa0000;
  color: #aa0000;
  padding: 10px;
  box-sizing: border-box;
  margin-bottom: 10px;
}

.statistics{
  display: flex;
}

.statistics>div+div{
  border-left: solid 1px black;
}
.statistics>div{
  padding: 20px;
}

.statistics h3{
  text-align: center;
  font-size: 17px;
  color: #666;
  font-weight: normal;
  margin-top: 20px;
}

.statistics h2{
  text-align: center;
  font-size: 17px;
  color: #373a40;
  font-weight: normal;
}

.statistics h1{
  text-align: center;
  font-size: 50px;
  color: #373a40;
  padding-bottom: 0px;
  margin-bottom: 0px;
  border-bottom: none;
  font-weight: bold;
}