/* Login Page Futuristic Styles */
.auth-main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 200px);
    background: linear-gradient(135deg, #0d1b2a, #1b263b);
    position: relative;
    overflow: hidden;
  }
  
  .auth-card {
    background: rgba(27, 38, 59, 0.95);
    padding: 48px;
    border-radius: 16px;
    width: 100%;
    max-width: 480px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(0, 221, 235, 0.3);
    box-shadow: 0 8px 32px rgba(0, 221, 235, 0.2);
    backdrop-filter: blur(10px);
    pointer-events: auto;
    z-index: 10;
  }
  
  .auth-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(90deg, #00ddeb, #ff00ff, #00ddeb);
    background-size: 400% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientText 5s linear infinite;
  }
  
  .auth-subtitle {
    font-size: 20px;
    color: #c5cae9;
    margin-bottom: 32px;
  }
  
  .form-group {
    margin-bottom: 24px;
    text-align: left;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #c5cae9;
  }
  
  .form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(0, 221, 235, 0.3);
    border-radius: 8px;
    font-size: 16px;
    background: rgba(51, 65, 85, 0.5);
    color: #ffffff;
    transition: all 0.3s ease;
    pointer-events: auto;
    user-select: auto;
    z-index: 11;
  }
  
  .form-group input:focus {
    outline: none;
    border-color: #00ddeb;
    box-shadow: 0 0 10px rgba(0, 221, 235, 0.5);
  }
  
  .btn-primary {
    background: linear-gradient(45deg, #00ddeb, #ff00ff);
    color: #ffffff;
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    pointer-events: auto;
    z-index: 11;
  }
  
  .btn-primary:hover {
    transform: translateY(-4px) rotateX(10deg);
    box-shadow: 0 8px 20px rgba(0, 221, 235, 0.5), 0 0 30px rgba(255, 0, 255, 0.3);
  }
  
  .auth-link {
    margin-top: 24px;
    color: #c5cae9;
  }
  
  .neon-link {
    color: #00ddeb;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    pointer-events: auto;
    z-index: 11;
  }
  
  .neon-link:hover {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
  }
  
  .neon-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff00ff;
    transition: width 0.3s ease;
  }
  
  .neon-link:hover::after {
    width: 100%;
  }
  
  .card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 221, 235, 0.2), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 9;
  }
  
  .auth-card:hover .card-glow {
    opacity: 0.3;
  }
  
  /* Animations */
  @keyframes gradientText {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
  }
  
  @keyframes cardReveal {
    from { transform: translateY(40px) scale(0.95); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes slideIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  
  .animate-card-reveal {
    animation: cardReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }
  
  .animate-gradient-text {
    animation: gradientText 5s linear infinite;
  }
  
  .animate-fade-in {
    animation: fadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }
  
  .animate-slide-in {
    animation: slideIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }
  
  .animate-3d-hover {
    perspective: 1000px;
  }
  
  /* Scroll Animation Trigger */
  [data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  [data-animate].visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }