/* Login Notification Styles */
.login-notification {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: linear-gradient(145deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 30px;
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255,255,255,0.2),
    inset 0 2px 0 rgba(255,255,255,0.4);
  z-index: 10001;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid rgba(255,255,255,0.3);
  max-width: 400px;
  width: 90%;
}

.login-notification.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.notification-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.notification-icon {
  font-size: 3rem;
  background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 10px rgba(255,107,107,0.3));
}

.notification-text h3 {
  color: #2d6a4f;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 8px 0;
  letter-spacing: 0.3px;
}

.notification-text p {
  color: #64748b;
  font-size: 1rem;
  margin: 0;
  font-weight: 500;
}

.notification-btn {
  background: linear-gradient(135deg, #2d6a4f 0%, #40916c 100%);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 
    0 8px 25px rgba(45, 106, 79, 0.4),
    inset 0 2px 0 rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}

.notification-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}

.notification-btn:hover::before {
  left: 100%;
}

.notification-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 
    0 12px 35px rgba(45, 106, 79, 0.6),
    inset 0 2px 0 rgba(255,255,255,0.3);
}

.notification-btn:active {
  transform: translateY(0) scale(0.98);
}

/* Backdrop for notification */
.login-notification::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}