html,body,h1,h2,h3,h4,h5,h6 {font-family: "Roboto", sans-serif}
/* Front design */
.logo-front {
	display: block;
    margin-left: auto;
    margin-right: auto;
}
.login {
 	background-image: url(https://source.unsplash.com/random/featured/?nature) !important;
    background-repeat: no-repeat;
    background-size: cover;
}
.loginform {
  	max-width: 20%;
  	display: block;
  	margin-left: auto;
  	margin-right: auto;
}

/* menu */
.navbar{
	border: 1px solid #e7e7e7;
    background-color: #f3f3f3;
	overflow: hidden;
}
.logo {
 width: 30%;
 float: left;
}
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
	transform: translate(0, 25%);
}

li {
    float: left;
}

li a {
    display: block;
    color: #666;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

li a:hover:not(.active) {
    background-color: #ddd;
}

a.logoimga img {
  width:20%;
  margin-left:5%;
}

li a:hover, .dropdown:hover .dropbtn {
	color: white;
    background-color: #4CAF50;
}

li.dropdown {
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {background-color: #f1f1f1}

.dropdown:hover .dropdown-content {
    display: block;
}

/* body */
body {
	margin: 0;
    padding: 0;
}
div.headline {
	padding-left: 25%;
}
div.full-screen {
	width: 100%;
}

/* index */
input[type=text], input[type=password] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

/* Get handlers */
.error-code {
	color: #D8000C;
    background-color: #FFD2D2;
}
.sucess-code {
	color: #4F8A10;
    background-color: #DFF2BF;
}
.error-code i, .sucess-code i {
    margin:10px 22px;
    font-size:2em;
    vertical-align:middle;
}
.error-code, .sucess-code {
	margin: 10px 0px;
	padding:12px;
}
/* Tabels */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border: 1px solid #ddd;
}

th, td {
  text-align: left;
  padding: 16px;
}

tr:nth-child(even) {
  background-color: #f2f2f2
}
/* Buttons */
.button-1 {
  background-color: #4CAF50;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  margin-left: auto;
  margin-right: auto;
  display: block;
  border-radius: .25rem;
}
button:hover {
  opacity: 0.8;
}
a:link.button, a:visited.button {
  background-color: #4CAF50;
  color: white;
  padding: 14px 25px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  width: 40px;
}
a:hover.button, a:active.button {
  opacity: 0.8;
}
/* Footer */
.footer {
	text-align: -webkit-center;
}
.footer a {
  	color: #fff;
  	user-select: none;
  	font-weight: 600;
  	text-decoration: none;
  	cursor: pointer;
}