:root {
    --green: #22c55e;
    --mint: #00ffaa;
    --black: #0d0d0d;
    --white: #fff;
  }
  
  body.auth-body {
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: url('/Assets/index/Wallpapers/Home.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 94vh;
    padding: 3vh;
    color: var(--white);
  }
  
  .auth-container {
    backdrop-filter: blur(20px);
    /* background: rgba(0, 0, 0, 0.55); */
    border-radius: 20px;
    padding: 2rem;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 8px 40px rgba(0, 255, 170, 0.15);
  }
  
  .auth-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .auth-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.5px;
  }
  
  .highlight {
    background: linear-gradient(120deg, var(--green), #fff);
    color: #000;
    padding: 0 0.4rem;
    border-radius: 0.3rem;
    font-weight: bold;
  }
  
  .input-group {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
  }
  
  .input-group input {
    width: 100%;
    padding: 0.9rem 2.8rem 0.9rem 2.8rem; /* left + right icons */
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    font-size: 1rem;
    outline: none;
    box-shadow: 0 0 10px rgba(0, 255, 170, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
  }
  
  .input-group input:focus {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 16px rgba(0, 255, 170, 0.25);
    border: 1px solid var(--mint);
  }
  
  .input-group svg {
    position: absolute;
    width: 3rem;
    height: 1.2rem;
    color: var(--mint);
    pointer-events: none;
  }

  .input-group > i:first-child {
    left: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .input-group .toggle-password {
    right: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: all;
    cursor: pointer;
  }
  
  .auth-btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
  }
  
  .auth-btn {
    background: linear-gradient(135deg, var(--green), var(--mint));
    color: #000;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    letter-spacing: 1px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 255, 170, 0.4);
  }
  
  .auth-footer {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
  }
  
  .auth-footer a {
    color: var(--mint);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .auth-footer a:hover {
    color: #00ffcc;
  }
  
  /* Mobile Tweaks */
  @media (max-width: 480px) {
    .auth-container {
      width: 90%;
      padding: 1.5rem;
    }
  
    .auth-title {
      font-size: 1.5rem;
    }
  
    .auth-btn {
      font-size: 1rem;
      padding: 0.8rem 1.6rem;
    }
  }
  
  .password-wrapper {
    position: relative;
    width: 100%;
  }
  
  .password-wrapper input {
    width: 100%;
  }
  
  .password-wrapper .toggle-password {
    position: absolute;
    right: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--mint);
    cursor: pointer;
    width: 1.2rem;
    height: 1.2rem;
    pointer-events: all;
  }

  .background-charts {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30vh;
    z-index: 0;
    opacity: 0.3;
    pointer-events: none;
  }
  
  .chart-line {
    fill: none;
    stroke: var(--mint);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw-line 6s linear infinite;
  }
  
  @keyframes draw-line {
    0% {
      stroke-dashoffset: 1000;
    }
    100% {
      stroke-dashoffset: 0;
    }
  }
  
  .logo {
    height: 54px; /* Adjust size as needed */
    cursor: pointer;
  }
  .header {
    position: fixed;
    top: 1rem;
    left: 1rem;
    height: 80px;
    z-index: 1000;
  }

  .logo {
    transition: transform 0.2s ease;
  }
  
  .logo:hover {
    transform: rotate(-2deg) scale(1.05);
  }