body {
  background-image: url("/upload/core/bg-login-new.png");
  background-position: center;
  background-size: cover;
}

.login-page {
  /* Modal Background */
  /* Modal Content */
}
.login-page .wrapper {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-page .brand {
  color: #fff;
  padding-right: 60px;
  width: 40%;
}
.login-page .brand .icon {
  margin: 0;
  width: 122px;
  height: 122px;
  text-align: center;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.login-page .brand .icon img {
  max-width: 100%;
  max-height: 100%;
}
.login-page .brand .title {
  margin: 10px 0 0 0;
  font-size: 30px;
  font-weight: 700;
  text-transform: capitalize;
}
.login-page .brand .desc {
  font-size: 16px;
  font-weight: 400;
  margin-top: 15px;
  line-height: 1.4em;
}
.login-page .login-box {
  color: #ffffff;
  width: 475px;
  padding: 50px 40px 0 40px;
  border-radius: 10px;
  align-content: center;
  background: transparent;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.1);
}
.login-page .login-box .title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}
.login-page .login-box .desc {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 47px;
  color: #fff;
}
.login-page .form-default .form-group {
  margin-bottom: 15px;
  position: relative;
}
.login-page .form-default .form-group .block-control {
  position: relative;
}
.login-page .form-default .form-group #password-view {
  position: absolute;
  right: 12px;
  top: 10px;
  cursor: pointer;
  color: #0f4c81;
  margin: 5px;
}
.login-page .form-default .control-label {
  font-size: 18px;
  margin-bottom: 6px;
  font-weight: normal;
  line-height: 1.2em;
  color: #fff;
}
.login-page .form-default .form-control {
  padding: 5px 12px;
  font-size: 18px;
  color: #000;
  min-height: inherit;
  height: 47px;
  line-height: 1.2em;
  box-shadow: none;
  display: block;
  width: 100%;
  font-weight: 400;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  border-radius: 5px;
  border: 1px solid #fff;
}
.login-page .form-default .form-submit {
  margin-top: 30px;
}
.login-page .form-default .btn {
  width: 100%;
  height: 47px;
  border-radius: 5px;
  color: #fff;
  font-size: 18px;
  padding: 0 15px;
  font-weight: bold;
  line-height: 34px;
}
.login-page label {
  display: inline-block;
}
.login-page .btn-fluid {
  width: 100%;
  position: relative;
}
.login-page .alert-login {
  margin: 0 0 20px 0;
  font-size: 12px;
  color: red;
  text-align: left;
}
.login-page .alert-login .feather {
  position: relative;
  top: 1px;
  color: #FF4961;
  font-size: 13px;
}
.login-page .copy {
  margin-top: 50px;
  margin-left: -40px;
  margin-right: -40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 18px 0;
  text-align: center;
  font-size: 18px;
  color: #fff;
  opacity: 0.75;
}
.login-page #AlertLogin {
  margin-top: 15px;
}
.login-page .loading-popup {
  width: 50px;
}
.login-page .loading-popup .title {
  font-size: 16px;
  color: #6e7175;
  margin-bottom: 20px;
}
.login-page .modal-background {
  position: fixed;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent dark background */
  display: none; /* Hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.login-page .modal-content {
  background-color: rgba(255, 255, 255, 0.7882352941);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  color: #333;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0; /* Initially hidden */
  transition: opacity 0.3s ease-in-out; /* Fade-in effect */
  width: 200px;
  height: auto;
  gap: 10px;
}
.login-page .modal-content.show {
  opacity: 1;
}
.login-page .modal-content img {
  width: 50px;
  margin-bottom: 10px;
}
.login-page .copy-right {
  bottom: 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  height: 60px;
  display: none;
}

.btn {
  background: none;
  position: relative;
  overflow: hidden;
  top: 0;
  z-index: 10;
  padding: 0 15px;
  min-width: 100px;
  height: 47px;
  line-height: 38px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: bold;
  border-radius: 5px;
  color: #fff;
  transition: all 200ms ease-out;
}

.btn-primary {
  background: #0f4c81;
  color: #fff;
}

.btn-primary:not(:disabled):not(.disabled):active:focus, .show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
  cursor: pointer;
}

@media (max-width: 767px) {
  .login-page .wrapper {
    flex-direction: column;
  }
  .login-page .brand {
    width: auto;
    padding-right: 0;
    padding-bottom: 30px;
  }
  .login-page .brand .icon {
    margin-left: auto;
    margin-right: auto;
    width: 108px;
    height: 108px;
  }
  .login-page .brand .title {
    font-size: 26px;
  }
  .login-page .brand .desc {
    font-size: 14px;
  }
  .login-page .brand .title, .login-page .brand .desc {
    text-align: center;
  }
}
@media (max-width: 575px) {
  .login-page .login-box {
    width: calc(100% - 30px);
    padding: 40px 30px 0 30px;
  }
  .login-page .login-box .copy {
    display: block;
  }
  .login-page .copy-right {
    display: none;
  }
  body {
    background-image: url("/dev25-wwp-spec/upload/core/bg-login-mobile.png");
  }
}/*# sourceMappingURL=login.css.map */