.Auth-Layout > *:not(footer) {
  position: relative;
  z-index: 1;
}

.Auth-Layout:before {
  background: #333;
  content: '';
  height: 50%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}

.Auth-Layout main {
  min-height: calc(100vh - 18px);
}

.Auth-Layout main .panel {
  margin: 100px 0;
}

.Auth-Layout main .panel.animate {
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
}

.Auth-Layout main .panel .logo {
  height: auto;
  margin-bottom: 40px;
  max-height: 200px;
  max-width: 400px;
  width: auto;
}

.Auth-Layout main .panel .form-group:last-child {
  margin-bottom: 0;
}

.Auth-Layout main .panel h3 {
  margin-bottom: 10px;
}

.Auth-Layout main .panel .error {
  color: red;
  font-size: 14px;
  margin-top: 10px;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.Auth-Layout footer {
  bottom: 0;
  color: #bbb;
  font-size: 12px;
  left: 0;
  margin: 10px 0;
  position: absolute;
  right: 0;
  text-align: center;
}

