/* Remove this if you dont want background overlay over the image or adjust per your needs */
/* body.login_admin:before {
    content: " ";
    background: rgba(31, 31, 31, 0.15);
    min-height: 100%;
    min-width: 100%;
    position: absolute;
}
body.login_admin {
  background: url('https://rnd.azcoretech.com/media/custom/login_admin1024.png') no-repeat center center fixed; /* The full image url*/
 /* -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: auto;
}
body.customers_login {
  background: url('https://rnd.azcoretech.com/media/custom/login_customer1024.png') no-repeat center center fixed; /* The full image url*/
 /* -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

/* 🌌 Background image + gradient overlay */
body.login_admin,
body.admin_auth,
body.authentication {
  position: relative;
  background: url('https://whitelabel.azcoretech.com/media/custom/people_and_market_br.jpg') no-repeat center center fixed !important;
  background-size: 100% !important;
  background-color: #ffffff !important;
  overflow: hidden;
}

/* 🩶 Gradient overlay for better contrast */
body.login_admin::before,
body.admin_auth::before,
body.authentication::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom right,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.4)
  );
  z-index: 0;
}

/* 🧊 Glassmorphism login box */
.auth-container,
#login,
.login-form {
  background: rgba(20, 20, 20, 0.45); /* warna semi-transparan gelap */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  padding: 40px !important;
  color: #fff;
  position: relative;
  z-index: 1;
}


/* ✨ Text color and label fixes */
.auth-container label,
.auth-container h1,
.auth-container p,
.login-form label {
  color: #fff !important;
}

/* 🔲 Inputs with frosted appearance */
.auth-container input,
#login input {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.auth-container input:focus {
  background: rgba(255, 255, 255, 0.2);
  outline: none;
}

/* 💡 Buttons with glow effect */
.auth-container .btn-info,
#login .btn-info {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.auth-container .btn-info:hover,
#login .btn-info:hover {
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

/* 🧭 Centering improvement for smaller screens */
body.login_admin #wrapper,
body.admin_auth #wrapper,
body.authentication #wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
