html, body {
  font-family: Franklin Gothic Book,Franklin Gothic,ITC Franklin Gothic, Verdana;
  font-size: 16px;
}
body {
  display: flex;
  flex-direction: column;

  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;

  background-image: url("bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
a,
a:active,
a:visited,
a:link {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
a:hover,
a:hover .techno-slash {
  color:#00ADEE;
  text-shadow:none;
}

h1 {
  font-family: Franklin Gothic Book Medium,Franklin Gothic,ITC Franklin Gothic, Verdana;
  font-size: 30px;
  margin: 0 0 20px 0;
  font-weight: normal;
}

header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 97px;
  background-color: #FFF;

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;

  z-index: 999;

  padding: 0 20px;
  box-sizing: border-box;
}

header > * {
  flex: 0 1 auto;

  font-size: 25px;
}

.brands img {
  max-height: 70px;
  display: block;
}
.technolution-logo {
  height: 47px;
}
.mm-logo {
  height: 57px;
}

ul.urls, 
ul.brands {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 10px 0;
  margin: 0;
}
ul.urls li, 
ul.brands li {
  flex: 0 1 auto;
  display: flex;
 
}
ul.urls li:not(:first-child) {
  padding-left: 20px;
}
ul.brands li:not(:first-child) {
  padding-left: 30px;
}

ul.urls {

}

.techno-slash {
  color: #FFD549;
}


.info {
  position: absolute;
  bottom: 0;
  right: 0;
  margin-bottom: 25vh;

  background-color: #FFD549;
  padding: 27px;
}
.info:after {
    content: "";
    position: absolute;
    bottom: -14px;
    left: 27px;
    right: 0;
    width: 0;
    height: 0;
    border-top: 14px solid #FFD549;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
}

#login-body {
    display: flex;
}

#login-body main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

.login-container {
    background: white;
    padding: 20px 24px;
    border-radius: 6px;
}

.login-button {
    font-family: Roboto, Arial, sans-serif;
    font-weight: bold;
    display: block;
    padding: 12px 16px;
    border: none;
    background-color: #ffcc00;
    font-size: 14px;
    border-radius: 4px;
}

.login-button + .login-button {
    margin-top: 12px;
}

.login-button:hover {
    background-color: #f5c400;
    color: black;
}