body {
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      padding: 40px 20px;
    }

    .auth-card {
      width: 100%;
      max-width: 440px;
    }

    /* ── Dropdown fix: dark bg + white text so options are readable ── */
    .form-glass-control,
    select.form-select {
      background-color: rgba(30, 27, 55, 0.85) !important;
      color: #e2e0ff !important;
      border-color: rgba(139, 92, 246, 0.35) !important;
    }

    select.form-select option {
      background-color: #1e1b37;
      color: #e2e0ff;
    }

    select.form-select:focus {
      box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.35);
      border-color: rgba(139, 92, 246, 0.6) !important;
    }

    /* Placeholder option styling */
    select.form-select option[value=""] {
      color: #9ca3af;
    }