* {box-sizing: border-box;}

@font-face {
    font-family: "titillium-web";
    src: url("fonts/titillium-web/TitilliumWeb-Regular.ttf");
}

.logo-img{
  float:right;
  display: inline-block;
  width: 125px;
  padding-right: 50px;
}


.message{
  font-family: "titillium-web";
  float: left;
    padding: 14px 16px;

  margin-top: 50px;
  margin-bottom: 50px;

}


.siteseal{
      margin-top: 25px;
  margin-bottom: 25px;
    padding: 14px 16px;

}

/* Add a black background color to the top navigation */
.topnav {
  background-color: white;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  font-family: "titillium-web";
  float: left;
  display: block;
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Navbar links on mouse-over */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Active/current link */
.topnav a.active {
  background-color: #2196F3;
  color: white;
}

/* Style the input container */
.login-container {
  float: left;
  font-family: "titillium-web";

}

.topnav a {
  font-family: "titillium-web";
  float: left;
  display: block;
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Style the input field inside the navbar */
.topnav input[type=text] {
  font-family: "titillium-web";
  padding: 6px;
  margin-top: 8px;
  font-size: 17px;
  border: none;
  width: 150px; /* adjust as needed (as long as it doesn't break the topnav) */
}

/* Style the input field inside the navbar */
.topnav input[type=password] {
  font-family: "titillium-web";
  padding: 6px;
  margin-top: 8px;
  font-size: 17px;
  border: none;
  width: 150px; /* adjust as needed (as long as it doesn't break the topnav) */
}

/* Style the button inside the input container */
.topnav .login-container button {
  font-family: "titillium-web";
  float: right;
  padding: 6px;
  margin-top: 8px;
  margin-right: 16px;
  background: #ddd;
  font-size: 17px;
  border: none;
  cursor: pointer;
    margin-top: 25px;
  margin-bottom: 25px;
}

.topnav .login-container button:hover {
  background: #ccc;
}

/* Add responsiveness - On small screens, display the navbar vertically instead of horizontally */
@media screen and (max-width: 600px) {
  .topnav .login-container {
    float: none;
  }
  .topnav a, .topnav input[type=text], .topnav .login-container button {
    float: none;
    display: block;
    text-align: left;
    width: 100%;
    margin: 0;
    padding: 14px;
  }
  .topnav input[type=text] {
    border: 1px solid #ccc;
  }
}