.login-body {
  min-height: 100vh;
  margin: 0;
  position: relative;
  overflow-x: hidden;
}

.login-bg {
  position: fixed;
  inset: 0;
  background: url('../img/server-bg.jpg') center center / cover no-repeat;
  z-index: 0;
}

.login-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, rgba(11, 28, 43, .82) 0%, rgba(15, 42, 33, .78) 100%);
  z-index: 1;
}

.login-wrap {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  padding: 1.5rem;
  flex-direction: column;
}

.login-card {
  width: 100%;
  max-width: 400px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .18) !important;
}

.login-logo {
  height: 42px;
  width: auto;
}

.login-card .form-control {
  background: rgba(255, 255, 255, .92);
  border: none;
}

.login-card .form-control:focus {
  background: #fff;
  box-shadow: 0 0 0 .2rem rgba(15, 255, 153, .25);
}

.login-footer {
  margin-top: 1.5rem;
  width: 100%;
  max-width: 400px;
}

.login-footer-link {
  color: rgba(255, 255, 255, .55);
  font-size: .78rem;
  text-decoration: none;
  letter-spacing: .02em;
}

.login-footer-link:hover {
  color: rgba(255, 255, 255, .85);
  text-decoration: underline;
}

@media (max-width: 400px) {
  .login-card { max-width: 100%; }
  .login-footer { max-width: 100%; }
}
