/* ===== GLOBAL FONT SETTINGS ===== */
body, input, select, textarea, button {
    font-family: 'Orbitron', sans-serif; /* Primary font for tech/spiritual feel */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rajdhani', 'Orbitron', sans-serif; /* Secondary, geometric font for headings */
    font-weight: 700;
    letter-spacing: 1px;
}

/* Optional: lighter headings or subtext */
p, label, span {
    font-family: 'Orbitron', sans-serif;
}

/* Navigation & Brand */
.navbar .brand-name {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}



/* ===== LOGIN PAGE BACKGROUND ===== */
#login-container {
    position: relative;
    width: 100%;
    height: 100vh;
    /* background: radial-gradient(circle at top, #0f1b3d9c, #050812a8 90%); */
    background-image: url('/images/spread-bg.png');
    background-position: center;
    background-size: cover;
    overflow: hidden;
  }
  
  /* ===== Overlay ===== */
  .login-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 17, 40, 0.4);
    /* backdrop-filter: blur(3px); */
    z-index: 1;
  }
  
  /* ===== LOGIN CARD ===== */
  .login-card {
    position: relative;
    z-index: 2;
    background: rgba(10, 20, 40, 0.524);
    border: 3px solid rgba(100, 150, 255, 0.25);
    backdrop-filter: blur(10px);
    max-width: 400px;
    width: 90%;
  }
  
  .login-card h2 {
    color: #e0eaff;
    text-shadow: 0 0 10px #4aa3ff;
    font-family: 'Orbitron', sans-serif;
  }
  
  /* ===== INPUTS ===== */
  .form-control {
    background-color: rgba(255,255,255,0.08);
    border: none;
    color: #fff;
  }
  
  .form-control::placeholder {
    color: rgba(255,255,255,0.6);
  }
  
  .form-control:focus {
    background-color: rgba(255,255,255,0.15);
    box-shadow: 0 0 10px #4aa3ff;
    color: #fff;
  }
  
  /* ===== BUTTON ===== */
  .login-btn {
    background: linear-gradient(90deg, #4aa3ff, #1e68f0);
    border: none;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease;
  }
  
  .login-btn:hover {
    background: linear-gradient(90deg, #1e68f0, #4aa3ff);
    box-shadow: 0 0 15px #4aa3ff;
    color: #fff;
  }
  


  .login-card {
    animation: pulseGlow 3s infinite alternate;
  }
  
  @keyframes pulseGlow {
    from {
      box-shadow: 0 0 10px rgba(74,163,255,0.4);
    }
    to {
      box-shadow: 0 0 25px rgba(74,163,255,0.7);
    }
  }



  @media (max-width: 768px) {
    #login-container {
      background-image: url('/images/spread-mb.png') !important;
    }
  }
  