body{
  background: url(/img/bg-login.jpg) no-repeat center center #eeeeee!important;
}

@media (min-width: 576px) {
    body {
        background-size: cover !important;
    }
}

.auth-links {
  margin-top: 10px;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-auth {
  z-index: 2;
}

.c-auth__container {
  /* flex: 1 1 100%; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-auth-panel {
  width: 100%;
  padding: 25px 15px;
  border-radius: 7px;
  box-shadow: 0 5px 25px rgba(35, 79, 142,.25);
  background: white;
  transition: all .3s ease;
}

.c-auth-logo {
  text-align: center;
  margin-bottom: 20px;
}

.c-auth-logo > img {
  margin: 0 auto;
  max-width: 45%;
  transition: all .6s ease;
}

.c-auth-form > .form-group{
  margin: 0 0 7px 0;
}

.c-auth-form > .form-group-btns {
  margin-top: 20px;
}

.form-horizontal .has-feedback .form-control-feedback {
  top: 28px;
  right: 0;
  color: var(--color-theme);
}

.form-horizontal .has-error .form-control-feedback {
  color: #dd4b39;
}

.form-group.has-error .help-block {
  font-size: 12px;
}

@media (min-width: 768px) {
  .c-auth-panel {
    max-width: 320px;
    padding: 35px 20px;
  }
}

@media (min-width: 992px) {
  @keyframes starCard {
    from {
      transform: translateY(35px);
      opacity: .1;
    }

    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .c-auth-panel {
    padding: 45px 20px;
    box-shadow: 0 7px 30px rgba(0,0,0, 0.4);
    animation-name: starCard;
    animation-duration: 1s;
    outline: 3px solid transparent;
    outline-offset: 6px;
  }

  .c-auth-panel:hover {
    outline-color: var(--color-theme);
  }

  .c-auth-logo {
    margin-bottom: 30px;
  }

  .c-auth-logo > img {
    max-width: 100%;
  }
}

.m-logotipo-openness {
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 20;
    width: 110px;
    height: auto;
    text-align: right;

}

@media (min-width: 576px) {
  .m-logotipo-openness {
    display: block;
    position: absolute;
    top: auto;
    bottom: 3%;
    right: 3%;
    z-index: 20;
    width: 180px;
    height: auto;
    text-align: right;
  }
}

/* @media (min-width: 992px) {
    .m-logotipo-openness {
        filter: brightness(0) invert(1);
    }
} */

.m-login-block {
  z-index: 2;
}
