
@font-face {
  font-family: 'Trajan';
  src: url(../fonts/TrajanPro-Regular.otf); }


body {
  margin: 0;
  padding: 0;
  background: url(../img/bg.jpeg) no-repeat center top;
  background-size: cover;
  font-family: sans-serif;
  height: 100vh;
}

/* PRELOADER */
#page-preloader, #spinner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: #1c1c1c;
  z-index: 9999;
  overflow: hidden;
}
#spinner:after {
  border-width: 0 3px 0 0;
  border-style: solid;
  border-color: #fff; /*COLOR CARGA PRELOADER*/
  border-radius: 50%;
  display: block;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  position: absolute;
  top: 50%;
  width: 50px;
  content: "";
  animation: spin 1s infinite linear;
  -webkit-animation: spin 1s infinite linear;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }}
/* PRELOADER */

.login-box {
  width: 320px;
  background: rgba(0, 0, 0, .6);
  color: #fff;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  padding: 20px 0 5px;
}

.login-box .avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: absolute;
  top: -50px;
  left: calc(50% - 50px);
}

.login-box h1 {
  margin: 0;
  padding: 0 0 20px;
  text-align: center;
  font-family: 'Trajan';
  font-size: 22px;
  font-weight: lighter;
  letter-spacing: 3pt;
}
.login-box h2 {
  margin-top: 170px;
  text-align: center;
  font-size: 14px;
  font-weight: lighter;
  color: #aaa;
}

.login-box label {
  margin: 0;
  padding: 0;
  font-weight: bold;
  display: block;
}

.login-box input {
  width: 100%;
  margin-bottom: 20px;
}

.login-box input {
  border: none;
  outline: none;
  height: 28px;
  color: #000;
  font-size: 12px;
  text-align: center;
}

.login-box input[type="submit"] {
  border: none;
  outline: none;
  height: 40px;
  background: #21669d;
  color: #fff;
  font-size: 18px;
  border-radius: 20px;
}

.login-box input[type="submit"]:hover {
  cursor: pointer;
  background: #00dcf2;
  color: #fff;
}

.login-box a {
  text-decoration: none;
  font-size: 12px;
  line-height: 20px;
  color: darkgrey;
}

.login-box a:hover {
  color: #fff;
}

.empresas {
  background-color: pink;
  width: 100%;
}
.hotrolls {
  width: 50%;
  float: right;
  height: 20px;
}
.labriatta {
  width: 50%;
  float: left;
  height: 20px;
}
.hotrolls img{
  width: 100%;
}
.labriatta img{
  width: 100%;
}
.hotrolls img:hover{
  -webkit-box-shadow: 6px 0px 17px -4px rgba(255,255,255,0.8);
  -moz-box-shadow: 6px 0px 17px -4px rgba(255,255,255,0.8);
  box-shadow: 6px 0px 17px -4px rgba(255,255,255,0.8);
  transition: 0.3s ease;
}
.labriatta img:hover{
  -webkit-box-shadow: -6px 0px 17px -4px rgba(255,255,255,0.8);
  -moz-box-shadow: -6px 0px 17px -4px rgba(255,255,255,0.8);
  box-shadow: -6px 0px 17px -4px rgba(255,255,255,0.8);
  transition: 0.3s ease;
}