/* Shared Bharat CRM styles (from provided template) */
body {
  background-color: #f8fafc;
  color: #0f172a;
}

[x-cloak] { display: none !important; }

.glass-panel {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.gradient-text {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-border {
  position: relative;
  background: linear-gradient(to right, white, white), linear-gradient(135deg, #3b82f6, #8b5cf6);
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  border: 2px solid transparent;
}

.input-field { transition: all 0.3s ease; }
.input-field:focus-within {
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
  border-color: #3b82f6;
}

/* Ambient blobs (used on the public homepage + auth pages) */
.animate-blob { animation: blob 7s infinite; }
.animation-delay-2000 { animation-delay: 2s; }
.animation-delay-4000 { animation-delay: 4s; }
@keyframes blob {
  0% { transform: translate(0px, 0px) scale(1); }
  33% { transform: translate(30px, -50px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
  100% { transform: translate(0px, 0px) scale(1); }
}
