:root {
  --controlet-login-background:
    linear-gradient(90deg, rgba(5, 25, 35, 0.7) 0%, rgba(8, 51, 55, 0.36) 42%, rgba(245, 250, 247, 0.68) 100%),
    url("/assets/images/auth/login-background.webp");
}

html {
  min-height: 100%;
  background-color: #eef6f3;
  background-image: var(--controlet-login-background);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

body.login-layout-body {
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  background: transparent;
}

.login-page-shell {
  min-height: 100vh;
  min-height: 100dvh;
  background: transparent;
}

.login-page-shell .row {
  min-height: 100vh;
  min-height: 100dvh;
  margin-right: 0;
  margin-left: 0;
}

.login-page-shell [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.login-page-shell .login-card {
  min-height: 100vh;
  min-height: 100dvh;
  height: auto;
  background: transparent;
  padding: 32px 16px;
}

.login-page-shell .controlet-login-form {
  box-sizing: border-box;
  width: min(430px, 100%);
  max-width: calc(100vw - 28px);
  padding: 34px 32px 32px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(5, 31, 42, 0.22);
  backdrop-filter: blur(10px);
}

.login-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.login-brand img {
  width: 88px;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(36, 105, 92, 0.16));
}

.login-page-shell .login-form h4,
.login-page-shell .login-form h6 {
  text-align: center;
}

.login-page-shell .login-form h4 {
  color: #183b3b;
  font-size: 24px;
  margin-bottom: 6px;
}

.login-page-shell .login-form h6 {
  color: #637579;
  line-height: 1.5;
}

.login-page-shell .login-form .form-group .input-group-text {
  background-color: rgba(36, 105, 92, 0.1);
  color: #24695c;
}

.login-page-shell .login-form .form-control {
  min-height: 44px;
  border-color: #dce8e5;
}

.login-page-shell .login-form .form-control:focus {
  border-color: #24695c;
}

.login-page-shell .login-form .btn {
  width: 100%;
  margin-left: 0;
  min-height: 46px;
  border-radius: 6px;
  box-shadow: 0 12px 24px rgba(36, 105, 92, 0.2);
}

@media (max-width: 575px) {
  html {
    background-attachment: scroll;
    background-position: 42% center;
  }

  .login-page-shell .login-card {
    padding: 24px 14px;
  }

  .login-page-shell .controlet-login-form {
    padding: 28px 22px;
  }
}
