/* Custom Login Styles for Dual Side & Mobile */

.login-dual-layout {
  display: flex;
  min-height: 100vh;
  width: 100%;
  margin: 0;
  padding: 0;
  max-width: 100% !important;
}

.login-image-side {
  display: none;
}

.login-form-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1.5rem;
}

@media (min-width: 992px) {
  /* Desktop: Dual Side */
  .login-image-side {
    display: block;
    flex: 1.2;
    background-image: url('https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh7fRJe9SVBEej0swcVC4DM7hCsCrH-RTrh8f7bjetyGiuwXQ3DV6bvM2f-gEsF67S5Tlh7-VM-zLbuc_nR5X-VRsdqgILF_qUBhC8EG6getFTTbI4xJkPJRxFPf2UbibB2KyYwVt1_nnvNITK3Q3oNfyxU4nxTc7aGiASXRbiUWf31i5nKThNzZTZGQ5P5/s1280/img1.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
  }
  
  /* Optional: overlay on image */
  .login-image-side::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.1), rgba(15,16,22,0.8));
  }
  
  .login-form-side {
    background-color: var(--bg-dark);
    padding: 3rem;
  }
}

@media (max-width: 991.98px) {
  /* Mobile: Background Image with minimal Blur */
  body.login-active {
    position: relative;
    background-color: #0f1016;
  }
  body.login-active::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh7fRJe9SVBEej0swcVC4DM7hCsCrH-RTrh8f7bjetyGiuwXQ3DV6bvM2f-gEsF67S5Tlh7-VM-zLbuc_nR5X-VRsdqgILF_qUBhC8EG6getFTTbI4xJkPJRxFPf2UbibB2KyYwVt1_nnvNITK3Q3oNfyxU4nxTc7aGiASXRbiUWf31i5nKThNzZTZGQ5P5/s1280/img1.jpeg');
    background-size: cover;
    background-position: center;
    filter: blur(6px) brightness(0.65); /* Less blur and slightly darkened */
    z-index: -1;
  }

  /* Glassmorphism Card on Mobile */
  .login-active .glass-card {
    background: rgba(23, 25, 35, 0.6) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 1.5rem !important; /* rounded-3xl */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6) !important;
  }
}


