<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
<style>
* {
box-sizing: border-box;
}
body {
margin: 0;
}
.nav {
overflow: hidden;
background-color: #939596;
}
.nav a {
float: left;
display: block;
color: #ffffff;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 18px;
}
.nav a:hover {
background-color: #eeeeee;
color: #000000;
}
.nav a.active {
background-color: #0e002b;
color: #ffffff;
}
.nav .login-container {
float: right;
}
.nav input[type=text],