.login-page {
  background-image:url("https://static.reweicoli.it/views/rsrc.rew/images/home_road.jpg") !important ;
  background-repeat: no-repeat;
  background-size: cover;
}

.login-box {
  background: rgba(0,0,0,0.1) !important;
  padding: 32px;
  border: 1px solid  rgba(255,255,255,0.4);
}

.alert a{
  color: #000000 !important;
  text-decoration: none;
  font-weight: bold;
}

.alert a:hover{
  color: #ffffff !important;
}

.card{
  background:transparent !important;
}

.adv-title{
  font-weight: bold;
  line-height: 1.1;
}

.no-link{
  cursor:initial !important;
}

.login-card-body {
  font-weight: none;
  background: rgba(255,255,255,0.6) !important;
}

.footer-card-body {
  background: rgba(0,0,0,0.04) !important;
  padding: 16px;
  color:#143f90;
}

.footer-card-btn {
  background: rgba(0,0,0,0.24) !important;
  padding: 8px 16px;
  color:#ffffff;
  border: 1px solid rgba(255,255,255,0.6) !important;
}

.footer-card-btn:hover {
  background: rgba(0,0,0,0.4) !important;
  color:#ffffff !important;
}

.services-subtitle{
  font-size: 0.8rem;
  color: #777;
  line-height: 1.2 !important;
}

.login-card-body .list-group-item {
  position: relative;
  display: block;
  padding: 0.3rem 0.4rem;
  background-color:rgba(255, 255, 255, 0.0);
  margin-top: 6px;
  border: 0px solid rgba(0, 0, 0, 0.125);
}

.login-card-body .list-group-item:hover {
  background-color:rgba(255, 255, 255, 0.4);
}

.rew-color{
  color: #000294;
}

.alert-orange{
  background-color: #fc5607;
  color: #ffffff;
}

.m-title-login{
  margin-top: 1px;
}

.text-rew{
  color:#143f90;
}

.bg-rosa{
  background-color: #ffbfea;
}

@media all and (max-width: 768px) { 
  .login-box {
    width: auto !important;
    background: rgba(0,0,0,0.0) !important;
  }

  .login-card-body {
    background: rgba(255,255,255,0.8) !important;
  }

  .footer-card-body {
    background: rgba(0,0,0,0.2) !important;
    padding: 16px;
    color:#ffffff;
  }
  
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #7ea8be;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 0px);
  left: calc(50% - 30px);
  border: 6px solid #fc5607;
  border-top-color: #143f90;
  border-bottom-color: #143f90;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}