  /* Hide dashboard sidebar on auth pages and center the auth card */
  .sidebar {
    display: none !important;
  }

  .dashboard-container {
    display: block;
    padding: 3rem 1rem;
  }

  .main-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
  }

  .card {
    background-color: rgba(17, 24, 39, 0.95);
  }

  .card .card-header {
    background: linear-gradient(135deg, #042f2a 0%, #065f50 100%);
  }

  .form-control {
    background: #0b1220;
    color: #e6eef8;
    border-color: #1f2937;
  }

  .form-control::placeholder {
    color: #94a3b8;
  }



  html,
  body {
    overflow-x: hidden;
    height: 100%;
  }

  .card,
  .main-content,
  .row {
    position: relative;
    z-index: 1;
  }



  #particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    /* allow clicks to pass through the particles canvas */
    pointer-events: none;
  }