 /*MAIN FULLSCREEN LAYOUT*/
.login-container {
  width: 100%;
  height: 100vh;
  background: #ffffff;   /* Full white background */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 40px;
  box-sizing: border-box;
}

   /*LEFT IMAGE STACK*/
  .image-stack {
  position: relative;
  width: 520px;
  height: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stack-img {
  position: absolute;
  border-radius: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: 0.3s ease;
}

.stack-img.img-1 { width: 260px; top: 40px;  left: 10px;  transform: rotate(-7deg); }
.stack-img.img-2 { width: 300px; top: 150px; left: 60px;  transform: rotate(4deg); }
.stack-img.img-3 { width: 240px; top: 260px; left: 140px; transform: rotate(-5deg); }

/* Hide image stack on small screens */
@media (max-width: 900px) {
  .image-stack {
    display: none;
  }
}

/*RIGHT LOGIN PANEL*/
.left-panel {
  width: 380px;
  padding: 40px 35px;
  border-radius: 12px;
  background: #ffffff; /* Ensures panel is pure white */
  margin-bottom: 70px;
}

.left-panel img {
  max-width: 200px;
}

   /*INPUT FIELDS*/
.input-lg-text {
  font-size: 18px !important;
  height: 55px !important;
  border-radius: 8px;
}

/* Password toggle icon */
.password-toggle {
  cursor: pointer;
  background: #fff !important;
  border-left: none !important;
}

   /*LOGIN BUTTON*/
.btn-login {
  width: 120%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #7a5cff, #6228d7);
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  height: 50px;
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(98, 40, 215, 0.4);
}

   /*TEXT ELEMENTS*/
.form-check-label {
  color: #6a1bb7;
  font-weight: 500;
}

.forgot-link {
  font-size: 14px;
  color: #6a1bb7 !important;
  font-weight: 500;
}

.login-title {
  font-size: 25px;
  font-weight: 700;
}

.login-subtitle {
  font-size: 12px;
  color: #666;
}

.right-email-field {
  width: 120%;
}

.login-logo {
  max-width: 175px;
  margin-left: 80px;
}

.login-button-wrapper {
  height: 50px;
  width: 120%;
}

